diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 8820bf1..3245ff0 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -3,6 +3,7 @@ module.exports = { node: true, browser: true, es2021: true, + "cypress/globals": true, }, globals: { describe: true, @@ -13,21 +14,21 @@ module.exports = { extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended", "prettier"], parserOptions: { ecmaVersion: 12, - parser: '@typescript-eslint/parser', - sourceType: 'module', - project: ["tsconfig.json"] + parser: "@typescript-eslint/parser", + sourceType: "module", + project: ["tsconfig.json"], }, - plugins: ["@typescript-eslint", "prettier"], - ignorePatterns: ['.eslintrc.cjs'], + plugins: ["@typescript-eslint", "prettier", "cypress"], + ignorePatterns: [".eslintrc.cjs"], rules: { - 'no-param-reassign': 'off', - '@typescript-eslint/no-explicit-any': 'off', - '@typescript-eslint/no-require-imports': 'off', + "no-param-reassign": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-require-imports": "off", "@typescript-eslint/no-misused-promises": [ "error", { - "checksVoidReturn": false - } - ] + checksVoidReturn: false, + }, + ], }, }; diff --git a/.github/CONTRIBUTING.zh-CN.md b/.github/CONTRIBUTING.zh-CN.md index 3cb60c3..1d904b5 100644 --- a/.github/CONTRIBUTING.zh-CN.md +++ b/.github/CONTRIBUTING.zh-CN.md @@ -12,24 +12,19 @@ NI Web Infra Team 的成长离不开大家的支持,如果你愿意为 NI Web ## Pull Request 规范 +- 请使用 [pnpm](https://pnpm.io/zh/) 进行开发 - 如果您是团队外用户请先 fork 一份到自己的项目下,不要直接在仓库下建分支。 - - commit 信息要以 `type(scope): 描述信息` 的形式填写,例如 `fix(components): [scrollbar] fix xxx bug`(推荐使用 `git-cz` 生成)。 - 1. type: 必须是 'build', 'chore', 'ci', 'conflict', 'delete', 'docs', 'downgrade', 'feat', 'fix', 'font', 'lint', 'perf', 'refactor', 'release', 'revert', 'stash', 'style', 'test', 'upgrade', 'wip' 其中的一个。 + 1. type: 必须是 'build', 'chore', 'ci', 'conflict', 'delete', 'docs', 'downgrade', 'feat', 'fix', 'font', 'lint', 'perf', 'refactor', 'release', 'revert', 'stash', 'style', 'test', 'upgrade', 'wip' 其中的一个。 - 2. scope: 必须是 components, directives, hooks, locale, test-utils, theme-chalk, tokens, utils, project, core, style, docs, ci, dev, build, deploy, other, typography, color, border, var 其中的一个。 + 2. scope: 必须是 components, directives, hooks, locale, test-utils, theme-chalk, tokens, utils, project, core, style, docs, ci, dev, build, deploy, other, typography, color, border, var 其中的一个。 - 3. header: 描述信息不要超过 128 个字符并且不要少于 3 个字符。 + 3. header: 描述信息不要超过 128 个字符并且不要少于 3 个字符。 - **不要提交** `.gitignore` 里面忽略的文件。 - -- 执行 `npm run build` 后可以正确打包文件。 - +- 执行 `pnpm run build` 后可以正确打包文件。 - 提交 PR 前请 rebase,确保 commit 记录的整洁。 - - 确保 PR 是提交到 `development` 分支,而不是 `main` 分支。 - - 如果是修复 bug,请在 PR 中给出描述信息。 - - 合并代码需要两名维护人员参与:一人进行 review 后 approve,另一人再次 review,通过后即可合并。 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 1434d6b..0aaff5c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,8 +1,6 @@ --- - name: Bug 提交 about: 使用此模板来提交一个 bug。 - --- diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index eea5f18..512dcc3 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -6,4 +6,3 @@ contact_links: - name: 贡献指南 url: https://github.com/NI-Web-Infra-Team/common-utils/blob/main/.github/CONTRIBUTING.zh-CN.md about: 如果您不知道如何提交一个 issue,请查看项目贡献指南 - diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 26cbabf..ce5497f 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,8 +1,6 @@ --- - name: 功能请求 about: 使用此模板来提交一个功能请求。 - --- diff --git a/.github/workflows/lint-commit-message-post.yml b/.github/workflows/lint-commit-message-post.yml index 9000134..2aad84a 100644 --- a/.github/workflows/lint-commit-message-post.yml +++ b/.github/workflows/lint-commit-message-post.yml @@ -99,7 +99,7 @@ jobs: 如果你觉得自己写这个提交消息很难,请使用下面的命令来启动一个交互式工具来帮助你生成消息。 ```shell - yarn cz + pnpm cz ``` Note that if you do not fix the commit message issue, your PR will be automatically closed within **3 days**. diff --git a/.github/workflows/lint-commit-message.yml b/.github/workflows/lint-commit-message.yml index fa9f801..d65b6ba 100644 --- a/.github/workflows/lint-commit-message.yml +++ b/.github/workflows/lint-commit-message.yml @@ -21,25 +21,29 @@ jobs: with: node-version: 18 - - name: Get yarn store directory - id: yarn-cache + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Get pnpm store directory + id: pnpm-cache run: | - echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $env:GITHUB_OUTPUT - uses: actions/cache@v3 - name: Setup yarn cache + name: Setup pnpm cache with: - path: ${{ steps.yarn-cache.outputs.yarn_cache_dir }} - key: ${{ runner.os }}-yarn-store-${{ hashFiles('**/yarn.lock') }} + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-yarn-store- + ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: yarn --frozen-lockfile + run: pnpm i --frozen-lockfile - name: Lint commit id: lint - run: yarn run lint || echo "failed=true" >> $GITHUB_OUTPUT + run: pnpm run lint || echo "failed=true" >> $GITHUB_OUTPUT - name: Set success result if: ${{ steps.lint.outputs.failed != 'true' }} diff --git a/.github/workflows/pr-auto-assign.yml b/.github/workflows/pr-auto-assign.yml index 4d17e94..44488be 100644 --- a/.github/workflows/pr-auto-assign.yml +++ b/.github/workflows/pr-auto-assign.yml @@ -17,21 +17,25 @@ jobs: with: node-version: 18 - - name: Get yarn store directory - id: yarn-cache + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Get pnpm store directory + id: pnpm-cache run: | - echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $env:GITHUB_OUTPUT - uses: actions/cache@v3 - name: Setup yarn cache + name: Setup pnpm cache with: - path: ${{ steps.yarn-cache.outputs.yarn_cache_dir }} - key: ${{ runner.os }}-yarn-store-${{ hashFiles('**/yarn.lock') }} + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-yarn-store- + ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: yarn --frozen-lockfile + run: pnpm i --frozen-lockfile - name: Generate config run: | diff --git a/.github/workflows/publish-build-product.yml b/.github/workflows/publish-build-product.yml index 760f13a..4771f9a 100644 --- a/.github/workflows/publish-build-product.yml +++ b/.github/workflows/publish-build-product.yml @@ -24,23 +24,27 @@ jobs: with: node-version: 18 - - name: Get yarn store directory - id: yarn-cache + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Get pnpm store directory + id: pnpm-cache run: | - echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $env:GITHUB_OUTPUT - uses: actions/cache@v3 - name: Setup yarn cache + name: Setup pnpm cache with: - path: ${{ steps.yarn-cache.outputs.yarn_cache_dir }} - key: ${{ runner.os }}-yarn-store-${{ hashFiles('**/yarn.lock') }} + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-yarn-store- + ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: yarn --frozen-lockfile + run: pnpm i --frozen-lockfile - name: Local build - run: yarn build + run: pnpm run build env: NODE_OPTIONS: --max-old-space-size=4096 diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index f183906..1b8f2f7 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -19,30 +19,34 @@ jobs: node-version: 18 registry-url: https://registry.npmjs.com/ - - name: Get yarn store directory - id: yarn-cache + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Get pnpm store directory + id: pnpm-cache run: | - echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $env:GITHUB_OUTPUT - uses: actions/cache@v3 - name: Setup yarn cache + name: Setup pnpm cache with: - path: ${{ steps.yarn-cache.outputs.yarn_cache_dir }} - key: ${{ runner.os }}-yarn-store-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn-store- + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: yarn --frozen-lockfile + run: pnpm i --frozen-lockfile - name: Lint - run: yarn run lint + run: pnpm run lint - name: Build banner - run: yarn run banner + run: pnpm run banner - name: Test - run: yarn run test + run: pnpm run test:all publish: needs: test @@ -55,6 +59,9 @@ jobs: node-version: 18 registry-url: https://registry.npmjs.com/ + - name: Setup pnpm + uses: pnpm/action-setup@v2 + - name: Get version run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV diff --git a/.github/workflows/publish-size-report.yml b/.github/workflows/publish-size-report.yml index 3fa877d..ed609ef 100644 --- a/.github/workflows/publish-size-report.yml +++ b/.github/workflows/publish-size-report.yml @@ -21,18 +21,22 @@ jobs: with: node-version: 18 - - name: Get yarn store directory - id: yarn-cache + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Get pnpm store directory + id: pnpm-cache run: | - echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $env:GITHUB_OUTPUT - uses: actions/cache@v3 - name: Setup yarn cache + name: Setup pnpm cache with: - path: ${{ steps.yarn-cache.outputs.yarn_cache_dir }} - key: ${{ runner.os }}-yarn-store-${{ hashFiles('**/yarn.lock') }} + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-yarn-store- + ${{ runner.os }}-pnpm-store- - uses: preactjs/compressed-size-action@v2 with: diff --git a/.github/workflows/release-create.yml b/.github/workflows/release-create.yml index 5eda8f8..b008383 100644 --- a/.github/workflows/release-create.yml +++ b/.github/workflows/release-create.yml @@ -24,23 +24,27 @@ jobs: with: node-version: 18 - - name: Get yarn store directory - id: yarn-cache + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Get pnpm store directory + id: pnpm-cache run: | - echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $env:GITHUB_OUTPUT - uses: actions/cache@v3 - name: Setup yarn cache + name: Setup pnpm cache with: - path: ${{ steps.yarn-cache.outputs.yarn_cache_dir }} - key: ${{ runner.os }}-yarn-store-${{ hashFiles('**/yarn.lock') }} + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-yarn-store- + ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: yarn --frozen-lockfile + run: pnpm i --frozen-lockfile - name: Start release env: GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} - run: yarn run semantic-release + run: pnpm run semantic-release diff --git a/.github/workflows/test-coverage.yml b/.github/workflows/test-coverage.yml index 42e741b..fb4247b 100644 --- a/.github/workflows/test-coverage.yml +++ b/.github/workflows/test-coverage.yml @@ -5,7 +5,7 @@ name: Test Coverage on: pull_request: branches: - - main + - development jobs: build: @@ -18,39 +18,53 @@ jobs: steps: - uses: actions/checkout@v3 - with: - fetch-depth: 0 + - uses: actions-cool/check-user-permission@v2 id: checkUser with: require: "write" - - name: Add dev branch - run: git branch dev origin/development + - uses: actions/cache@v3 + name: Setup cypress cache + with: + path: ~/.cache/Cypress + key: ${{ runner.os }}-cypress + restore-keys: | + ${{ runner.os }}-cypress - name: Setup node uses: actions/setup-node@v3 with: node-version: 18 - - name: Get yarn store directory - id: yarn-cache + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Get pnpm store directory + id: pnpm-cache run: | - echo "yarn_cache_dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT + echo "pnpm_cache_dir=$(pnpm store path)" >> $env:GITHUB_OUTPUT - uses: actions/cache@v3 - name: Setup yarn cache + name: Setup pnpm cache with: - path: ${{ steps.yarn-cache.outputs.yarn_cache_dir }} - key: ${{ runner.os }}-yarn-store-${{ hashFiles('**/yarn.lock') }} + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-yarn-store- + ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: yarn --frozen-lockfile + run: pnpm i --frozen-lockfile + + - name: Generate banner + run: pnpm run banner - name: Generate coverage - run: yarn run test:coverage + run: pnpm run test:coverage + + - name: Merge unit and e2e coverage + run: node ./scripts/mergeCoverageReport.cjs - name: "Report Coverage" if: always() # Also generate the report if tests are failing diff --git a/.gitignore b/.gitignore index bcaa9f1..b675dd2 100644 --- a/.gitignore +++ b/.gitignore @@ -14,8 +14,6 @@ build/banner.ts # Log files npm-debug.log* -yarn-debug.log* -yarn-error.log* pnpm-debug.log* # Editor directories and files @@ -34,3 +32,6 @@ components.d.ts **/.vitepress/dist **/.vitepress/cache coverage +*-coverage +.nyc_output +cypress diff --git a/.npmrc b/.npmrc index 8e71f68..2b3b7b2 100644 --- a/.npmrc +++ b/.npmrc @@ -1,2 +1,2 @@ auto-install-peers=true -registry=https://registry.npmmirror.com \ No newline at end of file +registry=https://registry.npmmirror.com diff --git a/.prettierignore b/.prettierignore index f07258a..62a6571 100644 --- a/.prettierignore +++ b/.prettierignore @@ -14,8 +14,6 @@ build/banner.ts # Log files npm-debug.log* -yarn-debug.log* -yarn-error.log* pnpm-debug.log* # Editor directories and files diff --git a/CHANGELOG.md b/CHANGELOG.md index 98477c2..59b0343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,56 +1,50 @@ # [1.1.0-beta.1](https://github.com/NI-Web-Infra-Team/common-utils/compare/v1.0.0...v1.1.0-beta.1) (2023-06-14) - ### Features -* 添加文档搜索功能 ([#24](https://github.com/NI-Web-Infra-Team/common-utils/issues/24)) ([9248fb6](https://github.com/NI-Web-Infra-Team/common-utils/commit/9248fb662831c73ff6f5dc29bc633b3cfac84baf)) +- 添加文档搜索功能 ([#24](https://github.com/NI-Web-Infra-Team/common-utils/issues/24)) ([9248fb6](https://github.com/NI-Web-Infra-Team/common-utils/commit/9248fb662831c73ff6f5dc29bc633b3cfac84baf)) # 1.0.0 (2023-06-02) - ### Bug Fixes -* 修复由于修改仓库名而丢失的链接 ([752f3b9](https://github.com/NI-Web-Infra-Team/common-utils/commit/752f3b916fdfeec986f1454e00e029008f4f3ffe)) -* 修复由于修改仓库名而丢失的链接 ([ccb0cac](https://github.com/NI-Web-Infra-Team/common-utils/commit/ccb0cac99e21f1297c0664628731ca36eb4ff352)) - +- 修复由于修改仓库名而丢失的链接 ([752f3b9](https://github.com/NI-Web-Infra-Team/common-utils/commit/752f3b916fdfeec986f1454e00e029008f4f3ffe)) +- 修复由于修改仓库名而丢失的链接 ([ccb0cac](https://github.com/NI-Web-Infra-Team/common-utils/commit/ccb0cac99e21f1297c0664628731ca36eb4ff352)) ### Features -* 添加文档框架 ([1e64c6b](https://github.com/NI-Web-Infra-Team/common-utils/commit/1e64c6b89b9e63c528086d4a88427a515f63d97e)) -* 添加文档框架 ([1960f59](https://github.com/NI-Web-Infra-Team/common-utils/commit/1960f5952016709f27ddfe918e73d1ef7f97e3c5)) -* 添加文档框架 ([a7aa14b](https://github.com/NI-Web-Infra-Team/common-utils/commit/a7aa14bc07241d0d5e62311433cdbae480b5f2c7)) -* 添加文档框架 ([da23561](https://github.com/NI-Web-Infra-Team/common-utils/commit/da23561d0d15c4a86b48cf52e795476e6c49a2ad)) -* 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) -* 计算文字宽度 ([03fb18c](https://github.com/NI-Web-Infra-Team/common-utils/commit/03fb18c06c0b1f73981f6d69df718d55b06a5d92)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) -* 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) +- 添加文档框架 ([1e64c6b](https://github.com/NI-Web-Infra-Team/common-utils/commit/1e64c6b89b9e63c528086d4a88427a515f63d97e)) +- 添加文档框架 ([1960f59](https://github.com/NI-Web-Infra-Team/common-utils/commit/1960f5952016709f27ddfe918e73d1ef7f97e3c5)) +- 添加文档框架 ([a7aa14b](https://github.com/NI-Web-Infra-Team/common-utils/commit/a7aa14bc07241d0d5e62311433cdbae480b5f2c7)) +- 添加文档框架 ([da23561](https://github.com/NI-Web-Infra-Team/common-utils/commit/da23561d0d15c4a86b48cf52e795476e6c49a2ad)) +- 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) +- 计算文字宽度 ([03fb18c](https://github.com/NI-Web-Infra-Team/common-utils/commit/03fb18c06c0b1f73981f6d69df718d55b06a5d92)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) +- 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) # 1.0.0 (2023-05-30) - ### Features -* 添加文档框架 ([1e64c6b](https://github.com/NI-Web-Infra-Team/common-utils/commit/1e64c6b89b9e63c528086d4a88427a515f63d97e)) -* 添加文档框架 ([da23561](https://github.com/NI-Web-Infra-Team/common-utils/commit/da23561d0d15c4a86b48cf52e795476e6c49a2ad)) -* 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) -* 计算文字宽度 ([03fb18c](https://github.com/NI-Web-Infra-Team/common-utils/commit/03fb18c06c0b1f73981f6d69df718d55b06a5d92)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) -* 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) +- 添加文档框架 ([1e64c6b](https://github.com/NI-Web-Infra-Team/common-utils/commit/1e64c6b89b9e63c528086d4a88427a515f63d97e)) +- 添加文档框架 ([da23561](https://github.com/NI-Web-Infra-Team/common-utils/commit/da23561d0d15c4a86b48cf52e795476e6c49a2ad)) +- 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) +- 计算文字宽度 ([03fb18c](https://github.com/NI-Web-Infra-Team/common-utils/commit/03fb18c06c0b1f73981f6d69df718d55b06a5d92)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) +- 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) # 1.0.0-beta.1 (2023-05-30) - ### Features -* 添加文档框架 ([1e64c6b](https://github.com/NI-Web-Infra-Team/common-utils/commit/1e64c6b89b9e63c528086d4a88427a515f63d97e)) -* 添加文档框架 ([da23561](https://github.com/NI-Web-Infra-Team/common-utils/commit/da23561d0d15c4a86b48cf52e795476e6c49a2ad)) -* 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) -* 计算文字宽度 ([03fb18c](https://github.com/NI-Web-Infra-Team/common-utils/commit/03fb18c06c0b1f73981f6d69df718d55b06a5d92)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) -* 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) +- 添加文档框架 ([1e64c6b](https://github.com/NI-Web-Infra-Team/common-utils/commit/1e64c6b89b9e63c528086d4a88427a515f63d97e)) +- 添加文档框架 ([da23561](https://github.com/NI-Web-Infra-Team/common-utils/commit/da23561d0d15c4a86b48cf52e795476e6c49a2ad)) +- 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) +- 计算文字宽度 ([03fb18c](https://github.com/NI-Web-Infra-Team/common-utils/commit/03fb18c06c0b1f73981f6d69df718d55b06a5d92)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) +- 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) # 1.0.0-development.1 (2023-05-25) - ### Features -* 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) -* 计算文字宽度 ([b916185](https://github.com/NI-Web-Infra-Team/common-utils/commit/b9161853527356b36ae1af906a47ef237416671d)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) -* 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) +- 清除历史日志,项目迁移 ([5ec0f43](https://github.com/NI-Web-Infra-Team/common-utils/commit/5ec0f435f781a51e9014640907bb8fe80a70d1ec)) +- 计算文字宽度 ([b916185](https://github.com/NI-Web-Infra-Team/common-utils/commit/b9161853527356b36ae1af906a47ef237416671d)), closes [#15](https://github.com/NI-Web-Infra-Team/common-utils/issues/15) +- 重置版本号 ([55def4a](https://github.com/NI-Web-Infra-Team/common-utils/commit/55def4acc2d3cf528f8103b08a7970e6213504ae)) diff --git a/README.md b/README.md index 83897a7..6ffe7cf 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,23 @@ # @ni-web-infra/common-utils -[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-util.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-util?ref=badge_shield) + +[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-utils.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-utils?ref=badge_shield) 公共工具类库 ## 如何使用 ```shell -$ npm install -S @ni-web-infra/common-utils +# 使用 npm +$ npm add @ni-web-infra/common-utils +# 使用 yarn +$ yarn add @ni-web-infra/common-utils +# 使用 pnpm +$ pnpm add @ni-web-infra/common-utils ``` ```javascript // 全量引入 -import cnUtils from "@ni-web-infra/common-utils"; -cnUtils.getBrowserInfo(); +import commonUtils from "@ni-web-infra/common-utils"; +commonUtils.getBrowserInfo(); // 按需引入 import { getBrowserInfo } from "@ni-web-infra/common-utils"; @@ -27,28 +33,75 @@ getBrowserInfo(); ``` -## API +## 文档 -[API 文档](https://unpkg.com/@ni-web-infra/common-utils/dist/docs/index.html) +[在线文档](<[common-utils.js.org](https://common-utils.js.org/)>) ## 如何开发 请遵循[贡献指南](https://github.com/NI-Web-Infra-Team/common-utils/blob/main/.github/CONTRIBUTING.zh-CN.md) ```shell +# 推荐启动 corepack +$ corepack enable + # 安装依赖 -$ npm install +$ pnpm install -# 打包依赖 -$ npm run build +# 测试 +$ pnpm test:all + +# 打包 +$ pnpm build ``` 在 debug 文件夹下添加调试 html,引入 dist 目录下的 js 文件,即可调试。 +> 如果在安装依赖时遇到网络问题,推荐在配置文件中加入 npmmirror 镜像站配置 + +1. 打开配置文件: + +```shell +# 使用 vscode 打开 npm 用户配置文件 +code ~/.npmrc +``` + +2. 加入以下内容: + +> 参考 cnpm 配置 - [binary-mirror-config/package.json](https://github.com/cnpm/binary-mirror-config/blob/692b69014a900943166e0a039638729f6ff644d3/package.json#L47) + +```shell +COREPACK_NPM_REGISTRY=https://registry.npmmirror.com, +NODEJS_ORG_MIRROR=https://cdn.npmmirror.com/binaries/node, +NVM_NODEJS_ORG_MIRROR=https://cdn.npmmirror.com/binaries/node, +PHANTOMJS_CDNURL=https://cdn.npmmirror.com/binaries/phantomjs, +CHROMEDRIVER_CDNURL=https://cdn.npmmirror.com/binaries/chromedriver, +OPERADRIVER_CDNURL=https://cdn.npmmirror.com/binaries/operadriver, +CYPRESS_DOWNLOAD_PATH_TEMPLATE=https://cdn.npmmirror.com/binaries/cypress/${version}/${platform}-${arch}/cypress.zip, +ELECTRON_MIRROR=https://cdn.npmmirror.com/binaries/electron/, +ELECTRON_BUILDER_BINARIES_MIRROR=https://cdn.npmmirror.com/binaries/electron-builder-binaries/, +SASS_BINARY_SITE=https://cdn.npmmirror.com/binaries/node-sass, +SWC_BINARY_SITE=https://cdn.npmmirror.com/binaries/node-swc, +NWJS_URLBASE=https://cdn.npmmirror.com/binaries/nwjs/v, +PUPPETEER_DOWNLOAD_HOST=https://cdn.npmmirror.com/binaries/chrome-for-testing, +PUPPETEER_DOWNLOAD_BASE_URL=https://cdn.npmmirror.com/binaries/chrome-for-testing, +PLAYWRIGHT_DOWNLOAD_HOST=https://cdn.npmmirror.com/binaries/playwright, +SENTRYCLI_CDNURL=https://cdn.npmmirror.com/binaries/sentry-cli, +SAUCECTL_INSTALL_BINARY_MIRROR=https://cdn.npmmirror.com/binaries/saucectl, +RE2_DOWNLOAD_MIRROR=https://cdn.npmmirror.com/binaries/node-re2, +RE2_DOWNLOAD_SKIP_PATH=true, +PRISMA_ENGINES_MIRROR=https://cdn.npmmirror.com/binaries/prisma, +npm_config_better_sqlite3_binary_host=https://cdn.npmmirror.com/binaries/better-sqlite3, +npm_config_keytar_binary_host=https://cdn.npmmirror.com/binaries/keytar, +npm_config_sharp_binary_host=https://cdn.npmmirror.com/binaries/sharp, +npm_config_sharp_libvips_binary_host=https://cdn.npmmirror.com/binaries/sharp-libvips, +npm_config_robotjs_binary_host=https://cdn.npmmirror.com/binaries/robotjs +``` + ## 如何发布 ```shell @@ -72,9 +125,10 @@ $ npm publish // Babel 显式转译列表 { // ... - transpileDependencies: ['/@ni-web-infra/common-utils/'] + transpileDependencies: ["/@ni-web-infra/common-utils/"]; } ``` ## License -[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-util.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-util?ref=badge_large) \ No newline at end of file + +[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-utils.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-utils?ref=badge_large) diff --git a/cypress.config.ts b/cypress.config.ts new file mode 100644 index 0000000..0ff750d --- /dev/null +++ b/cypress.config.ts @@ -0,0 +1,17 @@ +import { defineConfig } from "cypress"; +import { setupNodeEvents } from "./tests/e2e/plugins/index"; + +export default defineConfig({ + env: { CYPRESS_COVERAGE: "true" }, + component: { + devServer: { + framework: "vue", + bundler: "vite", + }, + }, + e2e: { + specPattern: ["**/tests/e2e/**/?(*.){test,spec}.?(c|m)[jt]s?(x)"], + supportFile: "tests/e2e/support/index.ts", + setupNodeEvents, + }, +}); diff --git a/cypress.d.ts b/cypress.d.ts new file mode 100644 index 0000000..5e1193c --- /dev/null +++ b/cypress.d.ts @@ -0,0 +1,12 @@ +import { mount } from "cypress/vue"; + +type MountParams = Parameters; +type OptionsParam = MountParams[1]; + +declare global { + namespace Cypress { + interface Chainable { + mount: typeof mount; + } + } +} diff --git a/debug/animation.html b/debug/animation.html index 270aab6..03e99b3 100644 --- a/debug/animation.html +++ b/debug/animation.html @@ -1,28 +1,27 @@ + + + + + 动画 + + - - - - - 动画 - - - - - - - + + diff --git a/debug/browser.html b/debug/browser.html index 73fbcad..cfd1117 100644 --- a/debug/browser.html +++ b/debug/browser.html @@ -1,27 +1,21 @@ + + + + + Document + + - - - - - Document - - - - - - - - - \ No newline at end of file + + diff --git a/debug/common.html b/debug/common.html index b9096d9..9345801 100644 --- a/debug/common.html +++ b/debug/common.html @@ -1,27 +1,25 @@ + + + + + common + + - - - - - common - - - - - - - + console.log("横线转驼峰", nowWorld); + + diff --git a/debug/computedTextWidth.html b/debug/computedTextWidth.html new file mode 100644 index 0000000..b67f60c --- /dev/null +++ b/debug/computedTextWidth.html @@ -0,0 +1,14 @@ + + + + + 计算文本宽度 + + + + + + diff --git a/debug/cookie.html b/debug/cookie.html index 7be1780..a928fdb 100644 --- a/debug/cookie.html +++ b/debug/cookie.html @@ -1,29 +1,27 @@ + + + + + cookie + + - - - - - cookie - - + + - - + console.log("cookie所有信息", newCookies); + + diff --git a/debug/coordinate.html b/debug/coordinate.html index e63dbb9..af5b412 100644 --- a/debug/coordinate.html +++ b/debug/coordinate.html @@ -9,10 +9,7 @@ + - - - - - 日期格式转换 - - - - - - - + console.log("日期数值", numberDate); + + diff --git a/debug/dom.html b/debug/dom.html index 25e62c1..79ed37c 100644 --- a/debug/dom.html +++ b/debug/dom.html @@ -1,41 +1,39 @@ - - - - - - DOM对象 - - - - + + + + + DOM对象 + + + +
- - - + console.log("转义后", str); + + diff --git a/debug/flex.html b/debug/flex.html index 4f785a9..d221c57 100644 --- a/debug/flex.html +++ b/debug/flex.html @@ -1,19 +1,17 @@ + + + + + 获取屏幕缩放比例 + + - - - - - 获取屏幕缩放比例 - - - - - - - + console.log("屏幕缩放比例", screenScaleSize); + + diff --git a/debug/getJson.html b/debug/getJson.html index ecac36e..28343fd 100644 --- a/debug/getJson.html +++ b/debug/getJson.html @@ -1,20 +1,18 @@ + + + + + getJson + + - - - - - getJson - - - - - - - - \ No newline at end of file + + + + diff --git a/debug/url.html b/debug/url.html index 8c72d24..a399881 100644 --- a/debug/url.html +++ b/debug/url.html @@ -1,27 +1,25 @@ + + + + + 获取url请求 + + - - - - - 获取url请求 - - - - - - - + console.log("域名", globalThis.location.host); + console.log("域名是否相等", isSome); + + diff --git a/debug/uuid.html b/debug/uuid.html index afcc048..b2d9462 100644 --- a/debug/uuid.html +++ b/debug/uuid.html @@ -1,28 +1,26 @@ + + + + + 获取uuid + + - - - - - 获取uuid - - + + - + const uuid = cnUtils.getUuid(32); + console.log("自定义位数的随机id", uuid); + const uuidDigit = cnUtils.getUuidDigit(8); + console.log("自定义位数的随机数字id", uuidDigit); + + diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index b5f2d4f..37c4514 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -25,7 +25,10 @@ export default defineConfig({ { text: "animation", link: "/lib/animation" }, { text: "browser", link: "/lib/browser" }, { text: "common", link: "/lib/common" }, - { text: "computedTextWidth", link: "/lib/computedTextWidth" }, + { + text: "computedTextWidth", + link: "/lib/computedTextWidth", + }, { text: "cookie", link: "/lib/cookie" }, { text: "Coordinate", link: "/lib/Coordinate" }, { text: "CoordinateUtils", link: "/lib/CoordinateUtils" }, @@ -40,7 +43,12 @@ export default defineConfig({ }, ], - socialLinks: [{ icon: "github", link: "https://github.com/NI-Web-Infra-Team/common-utils" }], + socialLinks: [ + { + icon: "github", + link: "https://github.com/NI-Web-Infra-Team/common-utils", + }, + ], search: { provider: "algolia", options: { diff --git a/docs/.vitepress/theme/index.ts b/docs/.vitepress/theme/index.ts index 07970be..ae8181c 100644 --- a/docs/.vitepress/theme/index.ts +++ b/docs/.vitepress/theme/index.ts @@ -1,16 +1,16 @@ // https://vitepress.dev/guide/custom-theme -import { h } from 'vue' -import Theme from 'vitepress/theme' -import './style.css' +import { h } from "vue"; +import Theme from "vitepress/theme"; +import "./style.css"; export default { ...Theme, Layout: () => { return h(Theme.Layout, null, { // https://vitepress.dev/guide/extending-default-theme#layout-slots - }) + }); }, enhanceApp({ app, router, siteData }) { // ... - } -} + }, +}; diff --git a/docs/.vitepress/theme/style.css b/docs/.vitepress/theme/style.css index c23c17a..55a3eb1 100644 --- a/docs/.vitepress/theme/style.css +++ b/docs/.vitepress/theme/style.css @@ -7,7 +7,7 @@ * Colors * -------------------------------------------------------------------------- */ - :root { +:root { --vp-c-brand: #646cff; --vp-c-brand-light: #747bff; --vp-c-brand-lighter: #9499ff; @@ -39,17 +39,9 @@ :root { --vp-home-hero-name-color: transparent; - --vp-home-hero-name-background: -webkit-linear-gradient( - 120deg, - #bd34fe 30%, - #41d1ff - ); + --vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff); - --vp-home-hero-image-background-image: linear-gradient( - -45deg, - #bd34fe 50%, - #47caff 50% - ); + --vp-home-hero-image-background-image: linear-gradient(-45deg, #bd34fe 50%, #47caff 50%); --vp-home-hero-image-filter: blur(40px); } @@ -88,4 +80,3 @@ .DocSearch { --docsearch-primary-color: var(--vp-c-brand) !important; } - diff --git a/docs/guide/introduction.md b/docs/guide/introduction.md index b9439a7..bea5f89 100644 --- a/docs/guide/introduction.md +++ b/docs/guide/introduction.md @@ -4,10 +4,10 @@ ```shell # 安装依赖 -$ yarn +$ pnpm i # 打包依赖 -$ yarn run build +$ pnpm run build ``` 在 debug 文件夹下添加调试 html,引入 dist 目录下的 js 文件,即可调试 @@ -27,4 +27,5 @@ $ yarn run build ``` # License + [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-utils.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2FNI-Web-Infra-Team%2Fcommon-utils?ref=badge_large) diff --git a/docs/guide/quick-start.md b/docs/guide/quick-start.md index 5034833..eac0ca7 100644 --- a/docs/guide/quick-start.md +++ b/docs/guide/quick-start.md @@ -28,4 +28,3 @@ getBrowserInfo(); cnUtils.getBrowserInfo(); ``` - diff --git a/docs/index.md b/docs/index.md index 2790922..c12625d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,4 +18,3 @@ features: - title: Feature C details: Lorem ipsum dolor sit amet, consectetur adipiscing elit --- - diff --git a/docs/lib/AJAXError.md b/docs/lib/AJAXError.md index 45d8062..ec783f0 100644 --- a/docs/lib/AJAXError.md +++ b/docs/lib/AJAXError.md @@ -1,26 +1,21 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -44,895 +39,916 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | + +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/Coordinate.md b/docs/lib/Coordinate.md index d46310d..0228297 100644 --- a/docs/lib/Coordinate.md +++ b/docs/lib/Coordinate.md @@ -1,28 +1,23 @@ ## Classes - Coordinate Coordinate class Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -46,956 +41,975 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class - -* [Coordinate](#Coordinate) - * [new Coordinate(lng, lat)](#new_Coordinate_new) - * [new Coordinate(lng, lat)](#new_Coordinate_new) +Coordinate class +**Kind**: global class +- [Coordinate](#Coordinate) + - [new Coordinate(lng, lat)](#new_Coordinate_new) + - [new Coordinate(lng, lat)](#new_Coordinate_new) ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## Coordinate -Coordinate class - -**Kind**: global class -* [Coordinate](#Coordinate) - * [new Coordinate(lng, lat)](#new_Coordinate_new) - * [new Coordinate(lng, lat)](#new_Coordinate_new) +Coordinate class +**Kind**: global class +- [Coordinate](#Coordinate) + - [new Coordinate(lng, lat)](#new_Coordinate_new) + - [new Coordinate(lng, lat)](#new_Coordinate_new) ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | + +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | + +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | + +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class - -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 - -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 -**Kind**: global function -**Returns**: `string` -转义后字符 - -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | + +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/CoordinateUtils.md b/docs/lib/CoordinateUtils.md index 36702a4..3c69ddd 100644 --- a/docs/lib/CoordinateUtils.md +++ b/docs/lib/CoordinateUtils.md @@ -1,28 +1,23 @@ ## Classes - CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -46,1618 +41,1680 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | + +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | + +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class - -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | + +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | + +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/ajax.md b/docs/lib/ajax.md index d7f48ad..866775a 100644 --- a/docs/lib/ajax.md +++ b/docs/lib/ajax.md @@ -1,26 +1,21 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -48,945 +43,968 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/animation.md b/docs/lib/animation.md index 79cdea3..d8b23f7 100644 --- a/docs/lib/animation.md +++ b/docs/lib/animation.md @@ -1,26 +1,21 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - requestAnimationFrame(fn) ⇒ `number` 执行帧动画 cancelAnimationFrame(id) @@ -50,950 +45,975 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 -**Kind**: global function -**Returns**: `string` -转义后字符 - -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/browser.md b/docs/lib/browser.md index 80c412b..f29a01f 100644 --- a/docs/lib/browser.md +++ b/docs/lib/browser.md @@ -1,26 +1,21 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - getBrowserInfo() ⇒ `Object` 获取浏览器信息 getBrowserInfo() ⇒ `Object` @@ -48,923 +43,946 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/common.md b/docs/lib/common.md index 80c5367..d84048e 100644 --- a/docs/lib/common.md +++ b/docs/lib/common.md @@ -1,26 +1,21 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - isNotEmpty(value) ⇒ `boolean` 判断值是否为空 humpToLine(str) ⇒ `string` @@ -50,949 +45,973 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | + +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | + +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | + +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class - -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 - -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 -**Kind**: global function -**Returns**: `string` -转义后字符 - -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | + +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/computedTextWidth.md b/docs/lib/computedTextWidth.md index 7e79f48..7c1debb 100644 --- a/docs/lib/computedTextWidth.md +++ b/docs/lib/computedTextWidth.md @@ -1,26 +1,21 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - computedTextWidth(text, font) ⇒ `number` 计算文本宽度 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -46,910 +41,929 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | + +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | + +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | + +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/cookie.md b/docs/lib/cookie.md index d4fa180..3650912 100644 --- a/docs/lib/cookie.md +++ b/docs/lib/cookie.md @@ -1,34 +1,29 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -52,957 +47,982 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | + +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | - -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | - -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | + +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | + +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 -**Kind**: global function -**Returns**: `string` -转义后字符 - -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/date.md b/docs/lib/date.md index bbb9fdc..94f3f19 100644 --- a/docs/lib/date.md +++ b/docs/lib/date.md @@ -1,32 +1,27 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -50,938 +45,961 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant +**Kind**: global constant +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | + +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/dom.md b/docs/lib/dom.md index 8739d66..a854053 100644 --- a/docs/lib/dom.md +++ b/docs/lib/dom.md @@ -1,42 +1,37 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -60,989 +55,1003 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 - -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 -**Kind**: global function -**Returns**: `string` -转义后字符 - -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } - -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | - -**Example** +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** + ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } - -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | - -**Example** +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** + ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class - -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 - -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | + +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | + +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | + +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/flex.md b/docs/lib/flex.md index 80732ee..a63ba57 100644 --- a/docs/lib/flex.md +++ b/docs/lib/flex.md @@ -1,26 +1,21 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -46,913 +41,935 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | + +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | + +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | + +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/getJson.md b/docs/lib/getJson.md index 1ba07c1..1215886 100644 --- a/docs/lib/getJson.md +++ b/docs/lib/getJson.md @@ -1,30 +1,25 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -48,933 +43,956 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | + +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/load.md b/docs/lib/load.md index 3d5b795..2a3a57c 100644 --- a/docs/lib/load.md +++ b/docs/lib/load.md @@ -1,30 +1,25 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 +异步加载 css 文件 DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -48,907 +43,928 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant -## DATE\_FORMATTER -日期时间格式模板 +## DATE_FORMATTER -**Kind**: global constant +日期时间格式模板 +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 - -**Kind**: global function -**Returns**: `string` -转义后字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | + +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/url.md b/docs/lib/url.md index 15dd2e4..b8ff851 100644 --- a/docs/lib/url.md +++ b/docs/lib/url.md @@ -1,32 +1,27 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -50,951 +45,975 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | + +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | + +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | + +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 + +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | + +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function + +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | + +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class - -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 - -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 -**Kind**: global function -**Returns**: `string` -转义后字符 - -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | + +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/docs/lib/uuid.md b/docs/lib/uuid.md index f42cf95..71768ec 100644 --- a/docs/lib/uuid.md +++ b/docs/lib/uuid.md @@ -1,34 +1,29 @@ ## Classes - Coordinate Coordinate class CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 ## Constants - DATE_FORMATTER 日期时间格式模板 asyncLoadJs -异步加载js文件 +异步加载 js 文件 asyncLoadCss -异步加载css文件 - +异步加载 css 文件 ## Functions - getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 +获取自定义位数的由数字组成的随机 ID,默认 4 位 ajax(requestParameters, callback) ⇒ `Cancelable` 请求函数 ajax(requestParameters, callback) ⇒ `Cancelable` @@ -52,945 +47,962 @@ lineToHump(str) ⇒ `string` computedTextWidth(text, font) ⇒ `number` 计算文本宽度 getCookie(name) ⇒ `string` | `undefined` -读取cookie值 +读取 cookie 值 getAllCookies() ⇒ `object` -读取所有cookie +读取所有 cookie setCookie(name, value, options) ⇒ `string` | `undefined` -设置cookie值 +设置 cookie 值 removeCookie(name, options) -删除cookie +删除 cookie formatDatetime(v, format) ⇒ `string` 日期时间格式化为字符串 formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp +日期时间格式化为 13 位 timestamp getDocument() ⇒ `Document` -获取当前document对象 +获取当前 document 对象 createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 +生成 DOM 元素对象 removeDom(el) -删除DOM元素对象 +删除 DOM 元素对象 addClassName(el, className) -增加DOM对象的class +增加 DOM 对象的 class removeClassName(el, className) -删除DOM对象的class +删除 DOM 对象的 class removeClassNameByClassName(className, doc) ⇒ `HTMLElement` | `null` -根据class名称删除多个DOM对象的class +根据 class 名称删除多个 DOM 对象的 class injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 +增加 document 对象的内联样式 filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 +生成过滤 XSS 的转义字符 getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` 获取屏幕缩放比例 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getJson(json, cb) ⇒ `Object` -获取json文件 +获取 json 文件 getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 +获取 url 请求中的参数值 getUrlParam(targetUrl) ⇒ `string` | `undefined` -获取url请求的主机名 +获取 url 请求的主机名 isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 +判断两个 url 顶级域名是否相等 getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID +获取 8 位由数字和字符串组成的随机 ID getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID +获取 16 位由数字和字符串组成的随机 ID getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 - - - +获取自定义位数的由数字组成的随机 ID,默认 4 位 ## Coordinate -Coordinate class -**Kind**: global class +Coordinate class +**Kind**: global class ### new Coordinate(lng, lat) + Coordinate class +| Param | Type | Description | +| ----- | -------- | ----------- | +| lng | `number` | longitude | +| lat | `number` | latitude | -| Param | Type | Description | -| --- | --- | --- | -| lng | `number` |longitude | -| lat | `number` |latitude | +**Example** -**Example** ```javascript const coordinate = new Coordinate(116.404, 39.915); ``` - ## CoordinateUtils -提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和WGS84坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代1次,可以达到 0.1 米的精度 - -**Kind**: global class - -* [CoordinateUtils](#CoordinateUtils) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) - * [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) - * [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) - * [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) - +提供了百度坐标(BD09)、国测局坐标(火星坐标,GCJ02)、和 WGS84 坐标系之间的转换,GCJ02 可以通过反复迭代的形式降低精度损失,精度基本可以精确到米,迭代 1 次,可以达到 0.1 米的精度 + +**Kind**: global class + +- [CoordinateUtils](#CoordinateUtils) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToGCJ02(coordinate)](#CoordinateUtils.transformBD09ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToBD09(coordinate)](#CoordinateUtils.transformGCJ02ToBD09) ⇒ [`Coordinate`](#Coordinate) + - [.simpleTransformGCJ02ToWGS84(coordinate)](#CoordinateUtils.simpleTransformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformGCJ02ToWGS84(gcj)](#CoordinateUtils.transformGCJ02ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToGCJ02(coordinate)](#CoordinateUtils.transformWGS84ToGCJ02) ⇒ [`Coordinate`](#Coordinate) + - [.transformBD09ToWGS84(coordinate)](#CoordinateUtils.transformBD09ToWGS84) ⇒ [`Coordinate`](#Coordinate) + - [.transformWGS84ToBD09(coordinate)](#CoordinateUtils.transformWGS84ToBD09) ⇒ [`Coordinate`](#Coordinate) ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` - ### CoordinateUtils.transformBD09ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + 百度坐标(BD09)转 火星坐标(GCJ02) **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 百度经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |百度经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转百度坐标 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -百度坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02 经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); ``` - ### CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -简单的GCJ02 转 WGS84 + +简单的 GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformGCJ02ToWGS84(gcj) ⇒ [`Coordinate`](#Coordinate) + GCJ02 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ----- | --------------------------- | ------------ | +| gcj | [`Coordinate`](#Coordinate) | GCJ02 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| gcj | [`Coordinate`](#Coordinate) |GCJ02经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToGCJ02(coordinate) ⇒ [`Coordinate`](#Coordinate) + WGS84 坐标 转 GCJ02 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -GCJ02 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ------------ | +| coordinate | [`Coordinate`](#Coordinate) | WGS84 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |WGS84经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); ``` - ### CoordinateUtils.transformBD09ToWGS84(coordinate) ⇒ [`Coordinate`](#Coordinate) -百度坐标BD09 转 WGS84 + +百度坐标 BD09 转 WGS84 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -WGS84 坐标:[经度,纬度] + +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); ``` - ### CoordinateUtils.transformWGS84ToBD09(coordinate) ⇒ [`Coordinate`](#Coordinate) -WGS84 转 百度坐标BD09 + +WGS84 转 百度坐标 BD09 **Kind**: static method of [`CoordinateUtils`](#CoordinateUtils) -**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] +**Returns**: [`Coordinate`](#Coordinate) -BD09 坐标:[经度,纬度] -| Param | Type | Description | -| --- | --- | --- | -| coordinate | [`Coordinate`](#Coordinate) |经纬度 | +| Param | Type | Description | +| ---------- | --------------------------- | ----------- | +| coordinate | [`Coordinate`](#Coordinate) | 经纬度 | + +**Example** -**Example** ```javascript cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); ``` +## DATE_FORMATTER -## DATE\_FORMATTER 日期时间格式模板 -**Kind**: global constant - +**Kind**: global constant ## asyncLoadJs -异步加载js文件 -**Kind**: global constant +异步加载 js 文件 +**Kind**: global constant ## asyncLoadCss -异步加载css文件 -**Kind**: global constant +异步加载 css 文件 +**Kind**: global constant ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID - -**Kind**: global function -**Returns**: `string` -uuid -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字组成的随机 ID,默认 4 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## ajax(requestParameters, callback) ⇒ `Cancelable` + 请求函数 **Kind**: global function -**Returns**: `Cancelable` -{ cancel: () => { ... } } +**Returns**: `Cancelable` -{ cancel: () => { ... } } + +| Param | Type | Description | +| --------------------------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- | ------- | +| requestParameters | `RequestParameters` | 请求参数 | +| requestParameters.url | `string` | 要请求的 URL。 | +| requestParameters.headers | `Object` | 要与请求一起发送的标头。 | +| requestParameters.method | `string` | 请求方法“GET” | “POST” | “PUT”。 | +| requestParameters.body | `string` | 请求正文。 | +| requestParameters.type | `string` | 要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | +| requestParameters.credentials | `string` | `'same-origin' | 'include'` 使用”include“发送带有跨源请求的 cookie。 | +| requestParameters.collectResourceTiming | `boolean` | 如果为 true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的 resourceTiming 属性中返回。 | +| requestParameters.referrerPolicy | `string` | 表示请求的 referrerPolicy 的字符串。有关更多信息和可能的值,请参阅 Referrer Policy HTTP 头页. | +| callback | `Callback` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| requestParameters | `RequestParameters` |请求参数 | -| requestParameters.url | `string` |要请求的URL。 | -| requestParameters.headers | `Object` |要与请求一起发送的标头。 | -| requestParameters.method | `string` |请求方法“GET”|“POST”|“PUT”。 | -| requestParameters.body | `string` |请求正文。 | -| requestParameters.type | `string` |要返回的响应主体类型为“string”、“json”、“arrayBuffer”。 | -| requestParameters.credentials | `string` |`'same-origin'|'include'` 使用”include“发送带有跨源请求的 cookie。 | -| requestParameters.collectResourceTiming | `boolean` |如果为true,将为这些转换后的请求收集 Resource Timing API 信息,并在相关数据事件的resourceTiming属性中返回。 | -| requestParameters.referrerPolicy | `string` |表示请求的referrerPolicy的字符串。有关更多信息和可能的值,请参阅Referrer Policy HTTP头页. | -| callback | `Callback` |回调函数 | +**Example** -**Example** ```javascript -ajax({url: 'data.json', type: "json", method: "GET"}, (res) => {}) +ajax({ url: "data.json", type: "json", method: "GET" }, (res) => {}); ``` - ## requestAnimationFrame(fn) ⇒ `number` + 执行帧动画 **Kind**: global function -**Returns**: `number` -动画id +**Returns**: `number` -动画 id + +| Param | Type | Description | +| ----- | ---------------------- | ----------- | +| fn | `FrameRequestCallback` | 动画函数 | -| Param | Type | Description | -| --- | --- | --- | -| fn | `FrameRequestCallback` |动画函数 | +**Example** -**Example** ```javascript var progress = 0; function render() { - progress += 1; // 修改图像的位置 - if (progress < 100) { // 在动画没有结束前,递归渲染 - requestAnimationFrame(render); - } + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + requestAnimationFrame(render); + } } const handlerId = requestAnimationFrame(render); -console.log('动画id', handlerId); +console.log("动画id", handlerId); ``` - ## cancelAnimationFrame(id) + 取消帧动画 -**Kind**: global function +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| id | `number` \| `undefined` \| `null` |动画id | +| Param | Type | Description | +| ----- | --------------------------------- | ----------- | +| id | `number` \| `undefined` \| `null` | 动画 id | + +**Example** -**Example** ```javascript const handlerId = requestAnimationFrame(render); cancelAnimationFrame(handlerId); ``` - ## sleep(ms) + 休眠 -**Kind**: global function +**Kind**: global function + +| Param | Type | Description | +| ----- | -------- | -------------------- | +| ms | `number` | 休眠时间(单位毫秒) | -| Param | Type | Description | -| --- | --- | --- | -| ms | `number` |休眠时间(单位毫秒) | +**Example** -**Example** ```javascript sleep(1000); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## getBrowserInfo() ⇒ `Object` + 获取浏览器信息 **Kind**: global function **Returns**: `Object` -{ Actual_Name, Actual_Version } -**Example** +**Example** + ```javascript -const result = getBrowserInfo() -console.log('浏览器' + navigator.userAgent) -console.log('浏览器' + navigator.Actual_Name, '版本号' + navigator.Actual_Version) -console.log(result.Actual_Name, result.Actual_Version) +const result = getBrowserInfo(); +console.log("浏览器" + navigator.userAgent); +console.log("浏览器" + navigator.Actual_Name, "版本号" + navigator.Actual_Version); +console.log(result.Actual_Name, result.Actual_Version); ``` - ## isNotEmpty(value) ⇒ `boolean` + 判断值是否为空 **Kind**: global function -**Returns**: `boolean` -是否为空 +**Returns**: `boolean` -是否为空 -| Param | Type | Description | -| --- | --- | --- | -| value | `any` |值 | +| Param | Type | Description | +| ----- | ----- | ----------- | +| value | `any` | 值 | + +**Example** -**Example** ```javascript const str = null; const isNull = isNotEmpty(str); -console.log('是否不为空', isNull); +console.log("是否不为空", isNull); ``` - ## humpToLine(str) ⇒ `string` + 驼峰转横线 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | + +**Example** -**Example** ```javascript const str = "helloWorld"; cosnt newStr = humpToLine(str); console.log('转换后', newStr); ``` - ## lineToHump(str) ⇒ `string` + 横线转驼峰 **Kind**: global function -**Returns**: `string` -转换后的字符 +**Returns**: `string` -转换后的字符 + +| Param | Type | Description | +| ----- | -------- | ------------------------ | +| str | `string` | 字符,默认为"" | -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符,默认为"" | +**Example** -**Example** ```javascript const str = "hello-world"; cosnt newStr = lineToHump(str); console.log('转换后', newStr); ``` - ## computedTextWidth(text, font) ⇒ `number` + 计算文本宽度 **Kind**: global function -**Returns**: `number` - +**Returns**: `number` - 宽度,单位 px - - -| Param | Type | Description | -| --- | --- | --- | -| text | `string` |文本 | -| font | `string` |字体 | - +| Param | Type | Description | +| ----- | -------- | ----------- | +| text | `string` | 文本 | +| font | `string` | 字体 | ## getCookie(name) ⇒ `string` \| `undefined` -读取cookie值 + +读取 cookie 值 **Kind**: global function -**Returns**: `string` \| `undefined` -cookie值 +**Returns**: `string` \| `undefined` -cookie 值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| name | `string` | cookie 名称 | -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | +**Example** -**Example** ```javascript -const cookie = getCookie('user'); -console.log('cookie值', cookie); +const cookie = getCookie("user"); +console.log("cookie值", cookie); ``` - ## getAllCookies() ⇒ `object` -读取所有cookie + +读取所有 cookie **Kind**: global function -**Returns**: `object` -cookie信息,例:{userName: 'admin'} -**Example** +**Returns**: `object` -cookie 信息,例:{userName: 'admin'} +**Example** + ```javascript const cookie = getAllCookies(); -console.log('所有cookie信息', cookie); +console.log("所有cookie信息", cookie); ``` - ## setCookie(name, value, options) ⇒ `string` \| `undefined` -设置cookie值 -**Kind**: global function +设置 cookie 值 + +**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| value | `string` |cookie值 | -| options | `CookieAttributes` \| `undefined` |cookie属性 | +| Param | Type | Description | +| ------- | --------------------------------- | ----------- | +| name | `string` | cookie 名称 | +| value | `string` | cookie 值 | +| options | `CookieAttributes` \| `undefined` | cookie 属性 | + +**Example** -**Example** ```javascript -setCookie('userName', 'admin'); +setCookie("userName", "admin"); ``` - ## removeCookie(name, options) -删除cookie -**Kind**: global function +删除 cookie -| Param | Type | Description | -| --- | --- | --- | -| name | `string` |cookie名称 | -| options | `CookieAttributes` |cookie属性 | +**Kind**: global function + +| Param | Type | Description | +| ------- | ------------------ | ----------- | +| name | `string` | cookie 名称 | +| options | `CookieAttributes` | cookie 属性 | + +**Example** -**Example** ```javascript -removeCookie('userName'); +removeCookie("userName"); ``` - ## formatDatetime(v, format) ⇒ `string` + 日期时间格式化为字符串 **Kind**: global function -**Returns**: `string` -日期时间字符串 +**Returns**: `string` -日期时间字符串 + +| Param | Type | Description | +| ------ | ------------------ | ------------ | +| v | `string` \| `Date` | 日期时间 | +| format | `string` | 日期时间格式 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | -| format | `string` |日期时间格式 | +**Example** -**Example** ```javascript const date = new Date(); -const strDate = formatDatetime(date, 'YYYY-MM-DD HH:mm:ss'); -console.log('日期时间', strDate); +const strDate = formatDatetime(date, "YYYY-MM-DD HH:mm:ss"); +console.log("日期时间", strDate); ``` - ## formatTimestamp(v) ⇒ `number` -日期时间格式化为13位timestamp + +日期时间格式化为 13 位 timestamp **Kind**: global function -**Returns**: `number` -13位timestamp +**Returns**: `number` -13 位 timestamp + +| Param | Type | Description | +| ----- | ------------------ | ----------- | +| v | `string` \| `Date` | 日期时间 | -| Param | Type | Description | -| --- | --- | --- | -| v | `string` \| `Date` |日期时间 | +**Example** -**Example** ```javascript const date = new Date(); const numDate = formatTimestamp(date); -console.log('日期时间', numDate); +console.log("日期时间", numDate); ``` - ## getDocument() ⇒ `Document` -获取当前document对象 -**Kind**: global function -**Returns**: `Document` -DOM对象 +获取当前 document 对象 +**Kind**: global function +**Returns**: `Document` -DOM 对象 ## createDom(tagName, className, cssText) ⇒ `HTMLElement` -生成DOM元素对象 - -**Kind**: global function -**Returns**: `HTMLElement` -DOM元素对象 -| Param | Type | Description | -| --- | --- | --- | -| tagName | `string` |标签名称 | -| className | `string` |class名称 | -| cssText | `string` |css样式 | +生成 DOM 元素对象 +**Kind**: global function +**Returns**: `HTMLElement` -DOM 元素对象 +| Param | Type | Description | +| --------- | -------- | ----------- | +| tagName | `string` | 标签名称 | +| className | `string` | class 名称 | +| cssText | `string` | css 样式 | ## removeDom(el) -删除DOM元素对象 - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | +删除 DOM 元素对象 +**Kind**: global function +| Param | Type | Description | +| ----- | --------- | ----------- | +| el | `Element` | 要素 | ## addClassName(el, className) -增加DOM对象的class - -**Kind**: global function -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +增加 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassName(el, className) -删除DOM对象的class -**Kind**: global function - -| Param | Type | Description | -| --- | --- | --- | -| el | `Element` |要素 | -| className | `Array.<string>` |class名称 | +删除 DOM 对象的 class +**Kind**: global function +| Param | Type | Description | +| --------- | ---------------------- | ----------- | +| el | `Element` | 要素 | +| className | `Array.<string>` | class 名称 | ## removeClassNameByClassName(className, doc) ⇒ `HTMLElement` \| `null` -根据class名称删除多个DOM对象的class -**Kind**: global function -**Returns**: `HTMLElement` \| `null` -DOM元素对象 - -| Param | Type | Description | -| --- | --- | --- | -| className | `string` |class名称 | -| doc | `Document` |DOM对象 | +根据 class 名称删除多个 DOM 对象的 class +**Kind**: global function +**Returns**: `HTMLElement` \| `null` -DOM 元素对象 +| Param | Type | Description | +| --------- | ---------- | ----------- | +| className | `string` | class 名称 | +| doc | `Document` | DOM 对象 | ## injectStyle(style, doc) ⇒ `HTMLStyleElement` -增加document对象的内联样式 -**Kind**: global function -**Returns**: `HTMLStyleElement` -DOM对象的内联样式 - -| Param | Type | Description | -| --- | --- | --- | -| style | `string` |css样式 | -| doc | `Document` |DOM对象 | +增加 document 对象的内联样式 +**Kind**: global function +**Returns**: `HTMLStyleElement` -DOM 对象的内联样式 +| Param | Type | Description | +| ----- | ---------- | ----------- | +| style | `string` | css 样式 | +| doc | `Document` | DOM 对象 | ## filterXSS(str) ⇒ `string` -生成过滤XSS的转义字符 -**Kind**: global function -**Returns**: `string` -转义后字符 - -| Param | Type | Description | -| --- | --- | --- | -| str | `string` |字符 | +生成过滤 XSS 的转义字符 +**Kind**: global function +**Returns**: `string` -转义后字符 +| Param | Type | Description | +| ----- | -------- | ----------- | +| str | `string` | 字符 | ## getScreenScaleSize(defaultSize, fractionDigits) ⇒ `number` + 获取屏幕缩放比例 **Kind**: global function -**Returns**: `number` -屏幕缩放比例 +**Returns**: `number` -屏幕缩放比例 + +| Param | Type | Description | +| -------------- | ----------------------- | ----------- | +| defaultSize | `number` | 默认尺寸 | +| fractionDigits | `number` \| `undefined` | 小数位数 | -| Param | Type | Description | -| --- | --- | --- | -| defaultSize | `number` |默认尺寸 | -| fractionDigits | `number` \| `undefined` |小数位数 | +**Example** -**Example** ```javascript const screenScaleSize = getScreenScaleSize(1920, 2); -console.log('屏幕缩放比例', screenScaleSize); +console.log("屏幕缩放比例", screenScaleSize); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getJson(json, cb) ⇒ `Object` -获取json文件 + +获取 json 文件 **Kind**: global function -**Returns**: `Object` -{ cancel: () => controller.abort() } +**Returns**: `Object` -{ cancel: () => controller.abort() } + +| Param | Type | Description | +| ----- | ---------- | ------------- | +| json | `String` | json 文件地址 | +| cb | `function` | 回调函数 | -| Param | Type | Description | -| --- | --- | --- | -| json | `String` |json文件地址 | -| cb | `function` |回调函数 | +**Example** -**Example** ```javascript -getJson('data.json',(res) => { - console.log(res) -}) +getJson("data.json", (res) => { + console.log(res); +}); ``` - ## getUrlParam(key, url) ⇒ `string` -获取url请求中的参数值 + +获取 url 请求中的参数值 **Kind**: global function -**Returns**: `string` -参数值 +**Returns**: `string` -参数值 + +| Param | Type | Description | +| ----- | -------- | ----------- | +| key | `string` | 参数名称 | +| url | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| key | `string` |参数名称 | -| url | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; -const id = getUrlParam('id', url); -console.log('参数值', id); +const url = "http://localhost:8080/getList?id=12"; +const id = getUrlParam("id", url); +console.log("参数值", id); ``` - ## getUrlParam(targetUrl) ⇒ `string` \| `undefined` -获取url请求的主机名 + +获取 url 请求的主机名 **Kind**: global function -**Returns**: `string` \| `undefined` -主机名 +**Returns**: `string` \| `undefined` -主机名 + +| Param | Type | Description | +| --------- | -------- | ----------- | +| targetUrl | `string` | 请求 url | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const host = getHost(url); -console.log('主机名', host); +console.log("主机名", host); ``` - ## isSameDomain(targetUrl, source) ⇒ `boolean` -判断两个url顶级域名是否相等 + +判断两个 url 顶级域名是否相等 **Kind**: global function -**Returns**: `boolean` -是否相等 +**Returns**: `boolean` -是否相等 + +| Param | Type | Description | +| --------- | -------- | ---------------------------- | +| targetUrl | `string` | 请求 url,默认为"" | +| source | `string` | 请求 url,默认为本机名 | -| Param | Type | Description | -| --- | --- | --- | -| targetUrl | `string` |请求url,默认为"" | -| source | `string` |请求url,默认为本机名 | +**Example** -**Example** ```javascript -const url = 'http://localhost:8080/getList?id=12'; +const url = "http://localhost:8080/getList?id=12"; const isSome = isSameDomain(url); -console.log('是否相等', isSome); +console.log("是否相等", isSome); ``` - ## getUuid8(options) ⇒ `string` -获取8位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 8 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid16(options) ⇒ `string` -获取16位由数字和字符串组成的随机ID -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| options | `any` |规则参数 | +获取 16 位由数字和字符串组成的随机 ID +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | ----- | ----------- | +| options | `any` | 规则参数 | ## getUuid(len, options) ⇒ `string` -获取自定义位数的由数字和字符串组成的随机ID,默认32位 -**Kind**: global function -**Returns**: `string` -uuid - -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +获取自定义位数的由数字和字符串组成的随机 ID,默认 32 位 +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | ## getUuidDigit(len, options) ⇒ `string` -获取自定义位数的由数字组成的随机ID,默认4位 -**Kind**: global function -**Returns**: `string` -uuid +获取自定义位数的由数字组成的随机 ID,默认 4 位 -| Param | Type | Description | -| --- | --- | --- | -| len | `number` |位数 | -| options | `any` |规则参数 | +**Kind**: global function +**Returns**: `string` -uuid +| Param | Type | Description | +| ------- | -------- | ----------- | +| len | `number` | 位数 | +| options | `any` | 规则参数 | diff --git a/package.json b/package.json index 119773e..d7e8bea 100644 --- a/package.json +++ b/package.json @@ -2,24 +2,27 @@ "name": "@ni-web-infra/common-utils", "version": "1.1.0-beta.1", "description": "NI util function library", - "packageManager": "yarn@1.22.19", + "packageManager": "pnpm@8.6.0", "main": "dist/index.js", "type": "module", "module": "dist/index.es.js", "types": "types/index.d.ts", "scripts": { - "build": "npm run banner && npm run build:type && npm run build:vite", + "preinstall": "node ./scripts/preinstall.cjs", + "prepare": "husky install", + "build": "pnpm run banner && pnpm run build:type && pnpm run build:vite", "build:vite": "vite build", - "build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json", + "build:type": "pnpm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json", "banner": "node build/create-banner.js", "clear:type": "rimraf ./types", - "test": "vitest run", - "test:coverage": "vitest --coverage", - "prepare": "husky install", + "test:unit": "vitest run", + "test:e2e": "cypress run", + "test:all": "pnpm run test:unit && pnpm run test:e2e", + "test:coverage": "pnpm run test:e2e && vitest --coverage --watch false", "lint": "eslint src --ext .js,.vue,.ts,.tsx", "lint-fix": "eslint src --fix --ext .vue,.js,.ts,.tsx", "cz": "git-cz", - "publishOnly": "npm run build && npm run docs:build", + "publishOnly": "pnpm run build && pnpm run docs:build", "semantic-release": "semantic-release", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", @@ -51,11 +54,11 @@ "*.scss": "prettier --write" }, "license": "MIT", - "dependencies": {}, "devDependencies": { - "@commitlint/cli": "^17.6.5", - "@commitlint/config-conventional": "^17.6.5", - "@rollup/plugin-commonjs": "^25.0.1", + "@commitlint/cli": "^17.6.6", + "@commitlint/config-conventional": "^17.6.6", + "@cypress/code-coverage": "^3.10.8", + "@rollup/plugin-commonjs": "^25.0.2", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.1.0", "@rollup/plugin-terser": "^0.4.3", @@ -64,38 +67,43 @@ "@semantic-release/git": "~10.0.1", "@semantic-release/github": "^9.0.3", "@semantic-release/npm": "~10.0.4", + "@types/cypress__code-coverage": "^3.10.0", "@types/js-cookie": "^3.0.3", "@types/lodash-es": "^4.17.7", - "@types/node": "^20.3.1", - "@typescript-eslint/eslint-plugin": "^5.59.11", - "@typescript-eslint/parser": "^5.59.11", - "@vitest/coverage-c8": "^0.32.0", + "@types/node": "^20.3.3", + "@typescript-eslint/eslint-plugin": "^5.61.0", + "@typescript-eslint/parser": "^5.61.0", + "@vitest/coverage-v8": "^0.32.4", "better-docs": "^2.7.2", - "c8": "^7.14.0", "commitizen": "^4.3.0", - "dayjs": "^1.11.8", - "dotenv": "^16.1.4", - "eslint": "^8.42.0", + "cypress": "^12.16.0", + "cypress-vite": "^1.4.0", + "dayjs": "^1.11.9", + "dotenv": "^16.3.1", + "eslint": "^8.44.0", "eslint-config-prettier": "^8.8.0", + "eslint-plugin-cypress": "^2.13.3", "eslint-plugin-import": "^2.27.5", "eslint-plugin-prettier": "^4.2.1", "git-cz": "^4.9.0", "husky": "^8.0.3", "js-cookie": "^3.0.5", "jsdoc": "^4.0.2", - "lint-staged": "^13.2.2", + "jsdom": "^22.1.0", + "lint-staged": "^13.2.3", "lodash-es": "^4.17.21", "minami": "^1.2.3", - "octokit": "^2.0.19", + "octokit": "^2.1.0", "prettier": "^2.8.8", "rimraf": "^5.0.1", - "rollup": "^3.25.1", - "semantic-release": "~21.0.5", - "typescript": "^5.1.3", + "rollup": "^3.26.0", + "semantic-release": "~21.0.7", + "typescript": "^5.1.6", "vite": "^4.3.9", "vite-plugin-banner": "^0.7.0", - "vitepress": "^1.0.0-beta.2", - "vitest": "^0.32.0", + "vite-plugin-istanbul": "^4.1.0", + "vitepress": "^1.0.0-beta.5", + "vitest": "^0.32.4", "yaml": "^2.3.1" }, "peerDependencies": { @@ -117,5 +125,15 @@ "commitizen": { "path": "git-cz" } + }, + "nyc": { + "reporter": [ + "text", + "html", + "clover", + "json-summary", + "json" + ], + "report-dir": "e2e-coverage" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..15dda3c --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,11644 @@ +lockfileVersion: "6.1" + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +dependencies: + prop-types: + specifier: ^15.8.1 + version: 15.8.1 + react: + specifier: ^17.0.2 + version: 17.0.2 + react-dom: + specifier: ^17.0.2 + version: 17.0.2(react@17.0.2) + +devDependencies: + "@commitlint/cli": + specifier: ^17.6.6 + version: 17.6.6 + "@commitlint/config-conventional": + specifier: ^17.6.6 + version: 17.6.6 + "@cypress/code-coverage": + specifier: ^3.10.8 + version: 3.10.8(@babel/core@7.22.5)(@babel/preset-env@7.22.6)(babel-loader@9.1.2)(cypress@12.16.0)(webpack@5.88.1) + "@rollup/plugin-commonjs": + specifier: ^25.0.2 + version: 25.0.2(rollup@3.26.0) + "@rollup/plugin-json": + specifier: ^6.0.0 + version: 6.0.0(rollup@3.26.0) + "@rollup/plugin-node-resolve": + specifier: ^15.1.0 + version: 15.1.0(rollup@3.26.0) + "@rollup/plugin-terser": + specifier: ^0.4.3 + version: 0.4.3(rollup@3.26.0) + "@semantic-release/changelog": + specifier: ~6.0.3 + version: 6.0.3(semantic-release@21.0.7) + "@semantic-release/exec": + specifier: ~6.0.3 + version: 6.0.3(semantic-release@21.0.7) + "@semantic-release/git": + specifier: ~10.0.1 + version: 10.0.1(semantic-release@21.0.7) + "@semantic-release/github": + specifier: ^9.0.3 + version: 9.0.3(semantic-release@21.0.7) + "@semantic-release/npm": + specifier: ~10.0.4 + version: 10.0.4(semantic-release@21.0.7) + "@types/cypress__code-coverage": + specifier: ^3.10.0 + version: 3.10.0 + "@types/js-cookie": + specifier: ^3.0.3 + version: 3.0.3 + "@types/lodash-es": + specifier: ^4.17.7 + version: 4.17.7 + "@types/node": + specifier: ^20.3.3 + version: 20.3.3 + "@typescript-eslint/eslint-plugin": + specifier: ^5.61.0 + version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6) + "@typescript-eslint/parser": + specifier: ^5.61.0 + version: 5.61.0(eslint@8.44.0)(typescript@5.1.6) + "@vitest/coverage-v8": + specifier: ^0.32.4 + version: 0.32.4(vitest@0.32.4) + better-docs: + specifier: ^2.7.2 + version: 2.7.2(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) + commitizen: + specifier: ^4.3.0 + version: 4.3.0 + cypress: + specifier: ^12.16.0 + version: 12.16.0 + cypress-vite: + specifier: ^1.4.0 + version: 1.4.0(vite@4.3.9) + dayjs: + specifier: ^1.11.9 + version: 1.11.9 + dotenv: + specifier: ^16.3.1 + version: 16.3.1 + eslint: + specifier: ^8.44.0 + version: 8.44.0 + eslint-config-prettier: + specifier: ^8.8.0 + version: 8.8.0(eslint@8.44.0) + eslint-plugin-cypress: + specifier: ^2.13.3 + version: 2.13.3(eslint@8.44.0) + eslint-plugin-import: + specifier: ^2.27.5 + version: 2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.44.0)(prettier@2.8.8) + git-cz: + specifier: ^4.9.0 + version: 4.9.0 + husky: + specifier: ^8.0.3 + version: 8.0.3 + js-cookie: + specifier: ^3.0.5 + version: 3.0.5 + jsdoc: + specifier: ^4.0.2 + version: 4.0.2 + jsdom: + specifier: ^22.1.0 + version: 22.1.0 + lint-staged: + specifier: ^13.2.3 + version: 13.2.3 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + minami: + specifier: ^1.2.3 + version: 1.2.3 + octokit: + specifier: ^2.1.0 + version: 2.1.0 + prettier: + specifier: ^2.8.8 + version: 2.8.8 + rimraf: + specifier: ^5.0.1 + version: 5.0.1 + rollup: + specifier: ^3.26.0 + version: 3.26.0 + semantic-release: + specifier: ~21.0.7 + version: 21.0.7 + typescript: + specifier: ^5.1.6 + version: 5.1.6 + vite: + specifier: ^4.3.9 + version: 4.3.9(@types/node@20.3.3) + vite-plugin-banner: + specifier: ^0.7.0 + version: 0.7.0 + vite-plugin-istanbul: + specifier: ^4.1.0 + version: 4.1.0(vite@4.3.9) + vitepress: + specifier: ^1.0.0-beta.5 + version: 1.0.0-draft.1(@algolia/client-search@4.17.2)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.6.0) + vitest: + specifier: ^0.32.4 + version: 0.32.4(jsdom@22.1.0) + yaml: + specifier: ^2.3.1 + version: 2.3.1 + +packages: + /@aashutoshrathi/word-wrap@1.2.6: + resolution: + { integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== } + engines: { node: ">=0.10.0" } + dev: true + + /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2)(search-insights@2.6.0): + resolution: + { integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw== } + dependencies: + "@algolia/autocomplete-plugin-algolia-insights": 1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2)(search-insights@2.6.0) + "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2) + transitivePeerDependencies: + - "@algolia/client-search" + - algoliasearch + - search-insights + dev: true + + /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2)(search-insights@2.6.0): + resolution: + { integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg== } + peerDependencies: + search-insights: ">= 1 < 3" + dependencies: + "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2) + search-insights: 2.6.0 + transitivePeerDependencies: + - "@algolia/client-search" + - algoliasearch + dev: true + + /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2): + resolution: + { integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA== } + peerDependencies: + "@algolia/client-search": ">= 4.9.1 < 6" + algoliasearch: ">= 4.9.1 < 6" + dependencies: + "@algolia/autocomplete-shared": 1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2) + "@algolia/client-search": 4.17.2 + algoliasearch: 4.17.2 + dev: true + + /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2): + resolution: + { integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ== } + peerDependencies: + "@algolia/client-search": ">= 4.9.1 < 6" + algoliasearch: ">= 4.9.1 < 6" + dependencies: + "@algolia/client-search": 4.17.2 + algoliasearch: 4.17.2 + dev: true + + /@algolia/cache-browser-local-storage@4.17.2: + resolution: + { integrity: sha512-ZkVN7K/JE+qMQbpR6h3gQOGR6yCJpmucSBCmH5YDxnrYbp2CbrVCu0Nr+FGVoWzMJNznj1waShkfQ9awERulLw== } + dependencies: + "@algolia/cache-common": 4.17.2 + dev: true + + /@algolia/cache-common@4.17.2: + resolution: + { integrity: sha512-fojbhYIS8ovfYs6hwZpy1O4mBfVRxNgAaZRqsdVQd54hU4MxYDYFCxagYX28lOBz7btcDHld6BMoWXvjzkx6iQ== } + dev: true + + /@algolia/cache-in-memory@4.17.2: + resolution: + { integrity: sha512-UYQcMzPurNi+cPYkuPemTZkjKAjdgAS1hagC5irujKbrYnN4yscK4TkOI5tX+O8/KegtJt3kOK07OIrJ2QDAAw== } + dependencies: + "@algolia/cache-common": 4.17.2 + dev: true + + /@algolia/client-account@4.17.2: + resolution: + { integrity: sha512-doSk89pBPDpDyKJSHFADIGa2XSGrBCj3QwPvqtRJXDADpN+OjW+eTR8r4hEs/7X4GGfjfAOAES8JgDx+fZntYw== } + dependencies: + "@algolia/client-common": 4.17.2 + "@algolia/client-search": 4.17.2 + "@algolia/transporter": 4.17.2 + dev: true + + /@algolia/client-analytics@4.17.2: + resolution: + { integrity: sha512-V+DcXbOtD/hKwAR3qGQrtlrJ3q2f9OKfx843q744o4m3xHv5ueCAvGXB1znPsdaUrVDNAImcgEgqwI9x7EJbDw== } + dependencies: + "@algolia/client-common": 4.17.2 + "@algolia/client-search": 4.17.2 + "@algolia/requester-common": 4.17.2 + "@algolia/transporter": 4.17.2 + dev: true + + /@algolia/client-common@4.17.2: + resolution: + { integrity: sha512-gKBUnjxi0ukJYIJxVREYGt1Dmj1B3RBYbfGWi0dIPp1BC1VvQm+BOuNwsIwmq/x3MPO+sGuK978eKiP3tZDvag== } + dependencies: + "@algolia/requester-common": 4.17.2 + "@algolia/transporter": 4.17.2 + dev: true + + /@algolia/client-personalization@4.17.2: + resolution: + { integrity: sha512-wc4UgOWxSYWz5wpuelNmlt895jA9twjZWM2ms17Ws8qCvBHF7OVGdMGgbysPB8790YnfvvDnSsWOv3CEj26Eow== } + dependencies: + "@algolia/client-common": 4.17.2 + "@algolia/requester-common": 4.17.2 + "@algolia/transporter": 4.17.2 + dev: true + + /@algolia/client-search@4.17.2: + resolution: + { integrity: sha512-FUjIs+gRe0upJC++uVs4sdxMw15JxfkT86Gr/kqVwi9kcqaZhXntSbW/Fw959bIYXczjmeVQsilYvBWW4YvSZA== } + dependencies: + "@algolia/client-common": 4.17.2 + "@algolia/requester-common": 4.17.2 + "@algolia/transporter": 4.17.2 + dev: true + + /@algolia/logger-common@4.17.2: + resolution: + { integrity: sha512-EfXuweUE+1HiSMsQidaDWA5Lv4NnStYIlh7PO5pLkI+sdhbMX0e5AO5nUAMIFM1VkEANes70RA8fzhP6OqCqQQ== } + dev: true + + /@algolia/logger-console@4.17.2: + resolution: + { integrity: sha512-JuG8HGVlJ+l/UEDK4h2Y8q/IEmRjQz1J0aS9tf6GPNbGYiSvMr1DDdZ+hqV3bb1XE6wU8Ypex56HisWMSpnG0A== } + dependencies: + "@algolia/logger-common": 4.17.2 + dev: true + + /@algolia/requester-browser-xhr@4.17.2: + resolution: + { integrity: sha512-FKI2lYWwksALfRt2OETFmGb5+P7WVc4py2Ai3H7k8FSfTLwVvs9WVVmtlx6oANQ8RFEK4B85h8DQJTJ29TDfmA== } + dependencies: + "@algolia/requester-common": 4.17.2 + dev: true + + /@algolia/requester-common@4.17.2: + resolution: + { integrity: sha512-Rfim23ztAhYpE9qm+KCfCRo+YLJCjiiTG+IpDdzUjMpYPhUtirQT0A35YEd/gKn86YNyydxS9w8iRSjwKh+L0A== } + dev: true + + /@algolia/requester-node-http@4.17.2: + resolution: + { integrity: sha512-E0b0kyCDMvUIhQmDNd/mH4fsKJdEEX6PkMKrYJjzm6moo+rP22tqpq4Rfe7DZD8OB6/LsDD3zs3Kvd+L+M5wwQ== } + dependencies: + "@algolia/requester-common": 4.17.2 + dev: true + + /@algolia/transporter@4.17.2: + resolution: + { integrity: sha512-m8pXlz5OnNzjD1rcw+duCN4jG4yEzkJBsvKYMoN22Oq6rQwy1AY5muZ+IQUs4dL+A364CYkRMLRWhvXpCZ1x+g== } + dependencies: + "@algolia/cache-common": 4.17.2 + "@algolia/logger-common": 4.17.2 + "@algolia/requester-common": 4.17.2 + dev: true + + /@ampproject/remapping@2.2.1: + resolution: + { integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== } + engines: { node: ">=6.0.0" } + dependencies: + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.18 + dev: true + + /@babel/code-frame@7.22.5: + resolution: + { integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/highlight": 7.22.5 + dev: true + + /@babel/compat-data@7.22.6: + resolution: + { integrity: sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg== } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/core@7.22.5: + resolution: + { integrity: sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== } + engines: { node: ">=6.9.0" } + dependencies: + "@ampproject/remapping": 2.2.1 + "@babel/code-frame": 7.22.5 + "@babel/generator": 7.22.5 + "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.5) + "@babel/helper-module-transforms": 7.22.5 + "@babel/helpers": 7.22.5 + "@babel/parser": 7.22.5 + "@babel/template": 7.22.5 + "@babel/traverse": 7.22.5 + "@babel/types": 7.22.5 + convert-source-map: 1.9.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator@7.22.5: + resolution: + { integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.18 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure@7.22.5: + resolution: + { integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor@7.22.5: + resolution: + { integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-compilation-targets@7.22.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/compat-data": 7.22.6 + "@babel/core": 7.22.5 + "@babel/helper-validator-option": 7.22.5 + "@nicolo-ribaudo/semver-v6": 6.3.3 + browserslist: 4.21.9 + lru-cache: 5.1.1 + dev: true + + /@babel/helper-create-class-features-plugin@7.22.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-function-name": 7.22.5 + "@babel/helper-member-expression-to-functions": 7.22.5 + "@babel/helper-optimise-call-expression": 7.22.5 + "@babel/helper-replace-supers": 7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@nicolo-ribaudo/semver-v6": 6.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-create-regexp-features-plugin@7.22.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-nBookhLKxAWo/TUCmhnaEJyLz2dekjQvv5SRpE9epWQBcpedWLKt8aZdsuT9XV5ovzR3fENLjRXVT0GsSlGGhA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-annotate-as-pure": 7.22.5 + "@nicolo-ribaudo/semver-v6": 6.3.3 + regexpu-core: 5.3.2 + dev: true + + /@babel/helper-define-polyfill-provider@0.4.0(@babel/core@7.22.5): + resolution: + { integrity: sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg== } + peerDependencies: + "@babel/core": ^7.4.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.2 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor@7.22.5: + resolution: + { integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-function-name@7.22.5: + resolution: + { integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/template": 7.22.5 + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-hoist-variables@7.22.5: + resolution: + { integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-member-expression-to-functions@7.22.5: + resolution: + { integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-module-imports@7.22.5: + resolution: + { integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-module-transforms@7.22.5: + resolution: + { integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-module-imports": 7.22.5 + "@babel/helper-simple-access": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/helper-validator-identifier": 7.22.5 + "@babel/template": 7.22.5 + "@babel/traverse": 7.22.5 + "@babel/types": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-optimise-call-expression@7.22.5: + resolution: + { integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-plugin-utils@7.22.5: + resolution: + { integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-remap-async-to-generator@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-wrap-function": 7.22.5 + "@babel/types": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-replace-supers@7.22.5: + resolution: + { integrity: sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-member-expression-to-functions": 7.22.5 + "@babel/helper-optimise-call-expression": 7.22.5 + "@babel/template": 7.22.5 + "@babel/traverse": 7.22.5 + "@babel/types": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access@7.22.5: + resolution: + { integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-skip-transparent-expression-wrappers@7.22.5: + resolution: + { integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-split-export-declaration@7.22.6: + resolution: + { integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/helper-string-parser@7.22.5: + resolution: + { integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-validator-identifier@7.22.5: + resolution: + { integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-validator-option@7.22.5: + resolution: + { integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== } + engines: { node: ">=6.9.0" } + dev: true + + /@babel/helper-wrap-function@7.22.5: + resolution: + { integrity: sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-function-name": 7.22.5 + "@babel/template": 7.22.5 + "@babel/traverse": 7.22.5 + "@babel/types": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helpers@7.22.5: + resolution: + { integrity: sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/template": 7.22.5 + "@babel/traverse": 7.22.5 + "@babel/types": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight@7.22.5: + resolution: + { integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-validator-identifier": 7.22.5 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser@7.22.5: + resolution: + { integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== } + engines: { node: ">=6.0.0" } + hasBin: true + dependencies: + "@babel/types": 7.22.5 + dev: true + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.13.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/plugin-transform-optional-chaining": 7.22.6(@babel/core@7.22.5) + dev: true + + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.5): + resolution: + { integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + dev: true + + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== } + engines: { node: ">=4" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-regexp-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.5): + resolution: + { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.5): + resolution: + { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.5): + resolution: + { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.5): + resolution: + { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.5): + resolution: + { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-regexp-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-async-generator-functions@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-remap-async-to-generator": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.5) + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-module-imports": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-remap-async-to-generator": 7.22.5(@babel/core@7.22.5) + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.12.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.5) + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.5) + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-function-name": 7.22.5 + "@babel/helper-optimise-call-expression": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-replace-supers": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/template": 7.22.5 + dev: true + + /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-regexp-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.5) + "@babel/helper-function-name": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-module-transforms": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-module-transforms": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-simple-access": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-hoist-variables": 7.22.5 + "@babel/helper-module-transforms": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-validator-identifier": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-module-transforms": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-regexp-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.22.6 + "@babel/core": 7.22.5 + "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-transform-parameters": 7.22.5(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-replace-supers": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.5) + dev: true + + /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.5) + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + regenerator-transform: 0.15.1 + dev: true + + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + dev: true + + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-regexp-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-regexp-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-create-regexp-features-plugin": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/preset-env@7.22.6(@babel/core@7.22.5): + resolution: + { integrity: sha512-IHr0AXHGk8oh8HYSs45Mxuv6iySUBwDTIzJSnXN7PURqHdxJVQlCoXmKJgyvSS9bcNf9NVRVE35z+LkCvGmi6w== } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.22.6 + "@babel/core": 7.22.5 + "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.5) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-validator-option": 7.22.5 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.5) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.5) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.22.5) + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.5) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.22.5) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.5) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.5) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.5) + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.5) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.22.5) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.22.5) + "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-async-generator-functions": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-block-scoping": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-class-static-block": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-classes": 7.22.6(@babel/core@7.22.5) + "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-destructuring": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-dynamic-import": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-export-namespace-from": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-for-of": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-json-strings": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-logical-assignment-operators": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-modules-amd": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-modules-commonjs": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-modules-systemjs": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-nullish-coalescing-operator": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-numeric-separator": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-object-rest-spread": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-optional-catch-binding": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-optional-chaining": 7.22.6(@babel/core@7.22.5) + "@babel/plugin-transform-parameters": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-private-property-in-object": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-regenerator": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-unicode-escapes": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.22.5) + "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.22.5) + "@babel/preset-modules": 0.1.5(@babel/core@7.22.5) + "@babel/types": 7.22.5 + "@nicolo-ribaudo/semver-v6": 6.3.3 + babel-plugin-polyfill-corejs2: 0.4.3(@babel/core@7.22.5) + babel-plugin-polyfill-corejs3: 0.8.1(@babel/core@7.22.5) + babel-plugin-polyfill-regenerator: 0.5.0(@babel/core@7.22.5) + core-js-compat: 3.31.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-modules@0.1.5(@babel/core@7.22.5): + resolution: + { integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-proposal-unicode-property-regex": 7.18.6(@babel/core@7.22.5) + "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.22.5) + "@babel/types": 7.22.5 + esutils: 2.0.3 + dev: true + + /@babel/regjsgen@0.8.0: + resolution: + { integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== } + dev: true + + /@babel/runtime@7.22.5: + resolution: + { integrity: sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA== } + engines: { node: ">=6.9.0" } + dependencies: + regenerator-runtime: 0.13.11 + dev: true + + /@babel/template@7.22.5: + resolution: + { integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/code-frame": 7.22.5 + "@babel/parser": 7.22.5 + "@babel/types": 7.22.5 + dev: true + + /@babel/traverse@7.22.5: + resolution: + { integrity: sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/code-frame": 7.22.5 + "@babel/generator": 7.22.5 + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-function-name": 7.22.5 + "@babel/helper-hoist-variables": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/parser": 7.22.5 + "@babel/types": 7.22.5 + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types@7.22.5: + resolution: + { integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-string-parser": 7.22.5 + "@babel/helper-validator-identifier": 7.22.5 + to-fast-properties: 2.0.0 + dev: true + + /@bcoe/v8-coverage@0.2.3: + resolution: + { integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== } + dev: true + + /@colors/colors@1.5.0: + resolution: + { integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== } + engines: { node: ">=0.1.90" } + requiresBuild: true + dev: true + optional: true + + /@commitlint/cli@17.6.6: + resolution: + { integrity: sha512-sTKpr2i/Fjs9OmhU+beBxjPavpnLSqZaO6CzwKVq2Tc4UYVTMFgpKOslDhUBVlfAUBfjVO8ParxC/MXkIOevEA== } + engines: { node: ">=v14" } + hasBin: true + dependencies: + "@commitlint/format": 17.4.4 + "@commitlint/lint": 17.6.6 + "@commitlint/load": 17.5.0 + "@commitlint/read": 17.5.1 + "@commitlint/types": 17.4.4 + execa: 5.1.1 + lodash.isfunction: 3.0.9 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 17.7.2 + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" + dev: true + + /@commitlint/config-conventional@17.6.6: + resolution: + { integrity: sha512-phqPz3BDhfj49FUYuuZIuDiw+7T6gNAEy7Yew1IBHqSohVUCWOK2FXMSAExzS2/9X+ET93g0Uz83KjiHDOOFag== } + engines: { node: ">=v14" } + dependencies: + conventional-changelog-conventionalcommits: 5.0.0 + dev: true + + /@commitlint/config-validator@17.4.4: + resolution: + { integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/types": 17.4.4 + ajv: 8.12.0 + dev: true + + /@commitlint/ensure@17.4.4: + resolution: + { integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/types": 17.4.4 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + dev: true + + /@commitlint/execute-rule@17.4.0: + resolution: + { integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA== } + engines: { node: ">=v14" } + dev: true + + /@commitlint/format@17.4.4: + resolution: + { integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/types": 17.4.4 + chalk: 4.1.2 + dev: true + + /@commitlint/is-ignored@17.6.6: + resolution: + { integrity: sha512-4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/types": 17.4.4 + semver: 7.5.2 + dev: true + + /@commitlint/lint@17.6.6: + resolution: + { integrity: sha512-5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/is-ignored": 17.6.6 + "@commitlint/parse": 17.6.5 + "@commitlint/rules": 17.6.5 + "@commitlint/types": 17.4.4 + dev: true + + /@commitlint/load@17.5.0: + resolution: + { integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/config-validator": 17.4.4 + "@commitlint/execute-rule": 17.4.0 + "@commitlint/resolve-extends": 17.4.4 + "@commitlint/types": 17.4.4 + "@types/node": 20.3.3 + chalk: 4.1.2 + cosmiconfig: 8.2.0 + cosmiconfig-typescript-loader: 4.3.0(@types/node@20.3.3)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + resolve-from: 5.0.0 + ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" + dev: true + + /@commitlint/message@17.4.2: + resolution: + { integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q== } + engines: { node: ">=v14" } + dev: true + + /@commitlint/parse@17.6.5: + resolution: + { integrity: sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/types": 17.4.4 + conventional-changelog-angular: 5.0.13 + conventional-commits-parser: 3.2.4 + dev: true + + /@commitlint/read@17.5.1: + resolution: + { integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/top-level": 17.4.0 + "@commitlint/types": 17.4.4 + fs-extra: 11.1.1 + git-raw-commits: 2.0.11 + minimist: 1.2.8 + dev: true + + /@commitlint/resolve-extends@17.4.4: + resolution: + { integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/config-validator": 17.4.4 + "@commitlint/types": 17.4.4 + import-fresh: 3.3.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + + /@commitlint/rules@17.6.5: + resolution: + { integrity: sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A== } + engines: { node: ">=v14" } + dependencies: + "@commitlint/ensure": 17.4.4 + "@commitlint/message": 17.4.2 + "@commitlint/to-lines": 17.4.0 + "@commitlint/types": 17.4.4 + execa: 5.1.1 + dev: true + + /@commitlint/to-lines@17.4.0: + resolution: + { integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg== } + engines: { node: ">=v14" } + dev: true + + /@commitlint/top-level@17.4.0: + resolution: + { integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g== } + engines: { node: ">=v14" } + dependencies: + find-up: 5.0.0 + dev: true + + /@commitlint/types@17.4.4: + resolution: + { integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ== } + engines: { node: ">=v14" } + dependencies: + chalk: 4.1.2 + dev: true + + /@cspotcode/source-map-support@0.8.1: + resolution: + { integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== } + engines: { node: ">=12" } + dependencies: + "@jridgewell/trace-mapping": 0.3.9 + dev: true + + /@cypress/code-coverage@3.10.8(@babel/core@7.22.5)(@babel/preset-env@7.22.6)(babel-loader@9.1.2)(cypress@12.16.0)(webpack@5.88.1): + resolution: + { integrity: sha512-9KZvQKYjoz09ocZEGC0a0+uVFSMe6gOblqGpWoTGi8HYSbKFAuOJkjJB5vJ1fb1u52GOgW2b1JqhhtJJyA/ksg== } + peerDependencies: + cypress: "*" + dependencies: + "@cypress/webpack-preprocessor": 5.17.1(@babel/core@7.22.5)(@babel/preset-env@7.22.6)(babel-loader@9.1.2)(webpack@5.88.1) + chalk: 4.1.2 + cypress: 12.16.0 + dayjs: 1.11.8 + debug: 4.3.4(supports-color@8.1.1) + execa: 4.1.0 + globby: 11.0.4 + istanbul-lib-coverage: 3.0.0 + js-yaml: 4.1.0 + nyc: 15.1.0 + transitivePeerDependencies: + - "@babel/core" + - "@babel/preset-env" + - babel-loader + - supports-color + - webpack + dev: true + + /@cypress/request@2.88.11: + resolution: + { integrity: sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w== } + engines: { node: ">= 6" } + dependencies: + aws-sign2: 0.7.0 + aws4: 1.12.0 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 2.3.3 + http-signature: 1.3.6 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + performance-now: 2.1.0 + qs: 6.10.4 + safe-buffer: 5.2.1 + tough-cookie: 2.5.0 + tunnel-agent: 0.6.0 + uuid: 8.3.2 + dev: true + + /@cypress/webpack-preprocessor@5.17.1(@babel/core@7.22.5)(@babel/preset-env@7.22.6)(babel-loader@9.1.2)(webpack@5.88.1): + resolution: + { integrity: sha512-FE/e8ikPc8z4EVopJCaior3RGy0jd2q9Xcp5NtiwNG4XnLfEnUFTZlAGwXe75sEh4fNMPrBJW1KIz77PX5vGAw== } + peerDependencies: + "@babel/core": ^7.0.1 + "@babel/preset-env": ^7.0.0 + babel-loader: ^8.0.2 || ^9 + webpack: ^4 || ^5 + dependencies: + "@babel/core": 7.22.5 + "@babel/preset-env": 7.22.6(@babel/core@7.22.5) + babel-loader: 9.1.2(@babel/core@7.22.5)(webpack@5.88.1) + bluebird: 3.7.1 + debug: 4.3.4(supports-color@8.1.1) + lodash: 4.17.21 + webpack: 5.88.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@cypress/xvfb@1.2.4(supports-color@8.1.1): + resolution: + { integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q== } + dependencies: + debug: 3.2.7(supports-color@8.1.1) + lodash.once: 4.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@docsearch/css@3.5.1: + resolution: + { integrity: sha512-2Pu9HDg/uP/IT10rbQ+4OrTQuxIWdKVUEdcw9/w7kZJv9NeHS6skJx1xuRiFyoGKwAzcHXnLp7csE99sj+O1YA== } + dev: true + + /@docsearch/js@3.5.1(@algolia/client-search@4.17.2)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.6.0): + resolution: + { integrity: sha512-EXi8de5njxgP6TV3N9ytnGRLG9zmBNTEZjR4VzwPcpPLbZxxTLG2gaFyJyKiFVQxHW/DPlMrDJA3qoRRGEkgZw== } + dependencies: + "@docsearch/react": 3.5.1(@algolia/client-search@4.17.2)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.6.0) + preact: 10.15.1 + transitivePeerDependencies: + - "@algolia/client-search" + - "@types/react" + - react + - react-dom + - search-insights + dev: true + + /@docsearch/react@3.5.1(@algolia/client-search@4.17.2)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.6.0): + resolution: + { integrity: sha512-t5mEODdLzZq4PTFAm/dvqcvZFdPDMdfPE5rJS5SC8OUq9mPzxEy6b+9THIqNM9P0ocCb4UC5jqBrxKclnuIbzQ== } + peerDependencies: + "@types/react": ">= 16.8.0 < 19.0.0" + react: ">= 16.8.0 < 19.0.0" + react-dom: ">= 16.8.0 < 19.0.0" + peerDependenciesMeta: + "@types/react": + optional: true + react: + optional: true + react-dom: + optional: true + dependencies: + "@algolia/autocomplete-core": 1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2)(search-insights@2.6.0) + "@algolia/autocomplete-preset-algolia": 1.9.3(@algolia/client-search@4.17.2)(algoliasearch@4.17.2) + "@docsearch/css": 3.5.1 + algoliasearch: 4.17.2 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - "@algolia/client-search" + - search-insights + dev: true + + /@esbuild/android-arm64@0.17.19: + resolution: + { integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA== } + engines: { node: ">=12" } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.17.19: + resolution: + { integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A== } + engines: { node: ">=12" } + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.17.19: + resolution: + { integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww== } + engines: { node: ">=12" } + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.17.19: + resolution: + { integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg== } + engines: { node: ">=12" } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.17.19: + resolution: + { integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw== } + engines: { node: ">=12" } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.17.19: + resolution: + { integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ== } + engines: { node: ">=12" } + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.17.19: + resolution: + { integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ== } + engines: { node: ">=12" } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.17.19: + resolution: + { integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg== } + engines: { node: ">=12" } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.17.19: + resolution: + { integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA== } + engines: { node: ">=12" } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.17.19: + resolution: + { integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ== } + engines: { node: ">=12" } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.14.54: + resolution: + { integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw== } + engines: { node: ">=12" } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.17.19: + resolution: + { integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ== } + engines: { node: ">=12" } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.17.19: + resolution: + { integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A== } + engines: { node: ">=12" } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.17.19: + resolution: + { integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg== } + engines: { node: ">=12" } + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.17.19: + resolution: + { integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA== } + engines: { node: ">=12" } + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.17.19: + resolution: + { integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q== } + engines: { node: ">=12" } + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.17.19: + resolution: + { integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw== } + engines: { node: ">=12" } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64@0.17.19: + resolution: + { integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q== } + engines: { node: ">=12" } + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.17.19: + resolution: + { integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g== } + engines: { node: ">=12" } + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64@0.17.19: + resolution: + { integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg== } + engines: { node: ">=12" } + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.17.19: + resolution: + { integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag== } + engines: { node: ">=12" } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.17.19: + resolution: + { integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw== } + engines: { node: ">=12" } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.17.19: + resolution: + { integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== } + engines: { node: ">=12" } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.44.0): + resolution: + { integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.44.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /@eslint-community/regexpp@4.5.1: + resolution: + { integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + dev: true + + /@eslint/eslintrc@2.1.0: + resolution: + { integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 9.6.0 + globals: 13.20.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js@8.44.0: + resolution: + { integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /@humanwhocodes/config-array@0.11.10: + resolution: + { integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== } + engines: { node: ">=10.10.0" } + dependencies: + "@humanwhocodes/object-schema": 1.2.1 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/module-importer@1.0.1: + resolution: + { integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== } + engines: { node: ">=12.22" } + dev: true + + /@humanwhocodes/object-schema@1.2.1: + resolution: + { integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== } + dev: true + + /@isaacs/cliui@8.0.2: + resolution: + { integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== } + engines: { node: ">=12" } + dependencies: + string-width: 5.1.2 + string-width-cjs: /string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: /strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 + dev: true + + /@istanbuljs/load-nyc-config@1.1.0: + resolution: + { integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== } + engines: { node: ">=8" } + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + dev: true + + /@istanbuljs/schema@0.1.3: + resolution: + { integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== } + engines: { node: ">=8" } + dev: true + + /@jest/schemas@29.6.0: + resolution: + { integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + "@sinclair/typebox": 0.27.8 + dev: true + + /@jridgewell/gen-mapping@0.3.3: + resolution: + { integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== } + engines: { node: ">=6.0.0" } + dependencies: + "@jridgewell/set-array": 1.1.2 + "@jridgewell/sourcemap-codec": 1.4.15 + "@jridgewell/trace-mapping": 0.3.18 + dev: true + + /@jridgewell/resolve-uri@3.1.0: + resolution: + { integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== } + engines: { node: ">=6.0.0" } + dev: true + + /@jridgewell/resolve-uri@3.1.1: + resolution: + { integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== } + engines: { node: ">=6.0.0" } + dev: true + + /@jridgewell/set-array@1.1.2: + resolution: + { integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== } + engines: { node: ">=6.0.0" } + dev: true + + /@jridgewell/source-map@0.3.3: + resolution: + { integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg== } + dependencies: + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.18 + dev: true + + /@jridgewell/sourcemap-codec@1.4.14: + resolution: + { integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== } + dev: true + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: + { integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== } + dev: true + + /@jridgewell/trace-mapping@0.3.18: + resolution: + { integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== } + dependencies: + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 + dev: true + + /@jridgewell/trace-mapping@0.3.9: + resolution: + { integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== } + dependencies: + "@jridgewell/resolve-uri": 3.1.1 + "@jridgewell/sourcemap-codec": 1.4.15 + dev: true + + /@jsdoc/salty@0.2.5: + resolution: + { integrity: sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw== } + engines: { node: ">=v12.0.0" } + dependencies: + lodash: 4.17.21 + dev: true + + /@nicolo-ribaudo/semver-v6@6.3.3: + resolution: + { integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg== } + hasBin: true + dev: true + + /@nodelib/fs.scandir@2.1.5: + resolution: + { integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== } + engines: { node: ">= 8" } + dependencies: + "@nodelib/fs.stat": 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: + { integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== } + engines: { node: ">= 8" } + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: + { integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== } + engines: { node: ">= 8" } + dependencies: + "@nodelib/fs.scandir": 2.1.5 + fastq: 1.15.0 + dev: true + + /@octokit/app@13.1.8: + resolution: + { integrity: sha512-bCncePMguVyFpdBbnceFKfmPOuUD94T189GuQ0l00ZcQ+mX4hyPqnaWJlsXE2HSdA71eV7p8GPDZ+ErplTkzow== } + engines: { node: ">= 14" } + dependencies: + "@octokit/auth-app": 4.0.13 + "@octokit/auth-unauthenticated": 3.0.5 + "@octokit/core": 4.2.4 + "@octokit/oauth-app": 4.2.4 + "@octokit/plugin-paginate-rest": 6.1.2(@octokit/core@4.2.4) + "@octokit/types": 9.3.2 + "@octokit/webhooks": 10.9.1 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/auth-app@4.0.13: + resolution: + { integrity: sha512-NBQkmR/Zsc+8fWcVIFrwDgNXS7f4XDrkd9LHdi9DPQw1NdGHLviLzRO2ZBwTtepnwHXW5VTrVU9eFGijMUqllg== } + engines: { node: ">= 14" } + dependencies: + "@octokit/auth-oauth-app": 5.0.6 + "@octokit/auth-oauth-user": 2.1.2 + "@octokit/request": 6.2.8 + "@octokit/request-error": 3.0.3 + "@octokit/types": 9.3.2 + deprecation: 2.3.1 + lru-cache: 9.1.2 + universal-github-app-jwt: 1.1.1 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/auth-oauth-app@5.0.6: + resolution: + { integrity: sha512-SxyfIBfeFcWd9Z/m1xa4LENTQ3l1y6Nrg31k2Dcb1jS5ov7pmwMJZ6OGX8q3K9slRgVpeAjNA1ipOAMHkieqyw== } + engines: { node: ">= 14" } + dependencies: + "@octokit/auth-oauth-device": 4.0.5 + "@octokit/auth-oauth-user": 2.1.2 + "@octokit/request": 6.2.8 + "@octokit/types": 9.3.2 + "@types/btoa-lite": 1.0.0 + btoa-lite: 1.0.0 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/auth-oauth-device@4.0.5: + resolution: + { integrity: sha512-XyhoWRTzf2ZX0aZ52a6Ew5S5VBAfwwx1QnC2Np6Et3MWQpZjlREIcbcvVZtkNuXp6Z9EeiSLSDUqm3C+aMEHzQ== } + engines: { node: ">= 14" } + dependencies: + "@octokit/oauth-methods": 2.0.6 + "@octokit/request": 6.2.8 + "@octokit/types": 9.3.2 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/auth-oauth-user@2.1.2: + resolution: + { integrity: sha512-kkRqNmFe7s5GQcojE3nSlF+AzYPpPv7kvP/xYEnE57584pixaFBH8Vovt+w5Y3E4zWUEOxjdLItmBTFAWECPAg== } + engines: { node: ">= 14" } + dependencies: + "@octokit/auth-oauth-device": 4.0.5 + "@octokit/oauth-methods": 2.0.6 + "@octokit/request": 6.2.8 + "@octokit/types": 9.3.2 + btoa-lite: 1.0.0 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/auth-token@3.0.4: + resolution: + { integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ== } + engines: { node: ">= 14" } + dev: true + + /@octokit/auth-unauthenticated@3.0.5: + resolution: + { integrity: sha512-yH2GPFcjrTvDWPwJWWCh0tPPtTL5SMgivgKPA+6v/XmYN6hGQkAto8JtZibSKOpf8ipmeYhLNWQ2UgW0GYILCw== } + engines: { node: ">= 14" } + dependencies: + "@octokit/request-error": 3.0.3 + "@octokit/types": 9.3.2 + dev: true + + /@octokit/core@4.2.4: + resolution: + { integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ== } + engines: { node: ">= 14" } + dependencies: + "@octokit/auth-token": 3.0.4 + "@octokit/graphql": 5.0.6 + "@octokit/request": 6.2.8 + "@octokit/request-error": 3.0.3 + "@octokit/types": 9.3.2 + before-after-hook: 2.2.3 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/endpoint@7.0.6: + resolution: + { integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg== } + engines: { node: ">= 14" } + dependencies: + "@octokit/types": 9.3.2 + is-plain-object: 5.0.0 + universal-user-agent: 6.0.0 + dev: true + + /@octokit/graphql@5.0.6: + resolution: + { integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw== } + engines: { node: ">= 14" } + dependencies: + "@octokit/request": 6.2.8 + "@octokit/types": 9.3.2 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/oauth-app@4.2.4: + resolution: + { integrity: sha512-iuOVFrmm5ZKNavRtYu5bZTtmlKLc5uVgpqTfMEqYYf2OkieV6VdxKZAb5qLVdEPL8LU2lMWcGpavPBV835cgoA== } + engines: { node: ">= 14" } + dependencies: + "@octokit/auth-oauth-app": 5.0.6 + "@octokit/auth-oauth-user": 2.1.2 + "@octokit/auth-unauthenticated": 3.0.5 + "@octokit/core": 4.2.4 + "@octokit/oauth-authorization-url": 5.0.0 + "@octokit/oauth-methods": 2.0.6 + "@types/aws-lambda": 8.10.119 + fromentries: 1.3.2 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/oauth-authorization-url@5.0.0: + resolution: + { integrity: sha512-y1WhN+ERDZTh0qZ4SR+zotgsQUE1ysKnvBt1hvDRB2WRzYtVKQjn97HEPzoehh66Fj9LwNdlZh+p6TJatT0zzg== } + engines: { node: ">= 14" } + dev: true + + /@octokit/oauth-methods@2.0.6: + resolution: + { integrity: sha512-l9Uml2iGN2aTWLZcm8hV+neBiFXAQ9+3sKiQe/sgumHlL6HDg0AQ8/l16xX/5jJvfxueqTW5CWbzd0MjnlfHZw== } + engines: { node: ">= 14" } + dependencies: + "@octokit/oauth-authorization-url": 5.0.0 + "@octokit/request": 6.2.8 + "@octokit/request-error": 3.0.3 + "@octokit/types": 9.3.2 + btoa-lite: 1.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/openapi-types@18.0.0: + resolution: + { integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw== } + dev: true + + /@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4): + resolution: + { integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ== } + engines: { node: ">= 14" } + peerDependencies: + "@octokit/core": ">=4" + dependencies: + "@octokit/core": 4.2.4 + "@octokit/tsconfig": 1.0.2 + "@octokit/types": 9.3.2 + dev: true + + /@octokit/plugin-paginate-rest@7.1.2(@octokit/core@4.2.4): + resolution: + { integrity: sha512-Jx8KuKqEAVRsK6fMzZKv3h6UH9/NRDHsDRtUAROqqmZlCptM///Uef7A1ViZ/cbDplekz7VbDWdFLAZ/mpuDww== } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": ">=4" + dependencies: + "@octokit/core": 4.2.4 + "@octokit/tsconfig": 2.0.0 + "@octokit/types": 9.3.2 + dev: true + + /@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4): + resolution: + { integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA== } + engines: { node: ">= 14" } + peerDependencies: + "@octokit/core": ">=3" + dependencies: + "@octokit/core": 4.2.4 + "@octokit/types": 10.0.0 + dev: true + + /@octokit/plugin-retry@4.1.6(@octokit/core@4.2.4): + resolution: + { integrity: sha512-obkYzIgEC75r8+9Pnfiiqy3y/x1bc3QLE5B7qvv9wi9Kj0R5tGQFC6QMBg1154WQ9lAVypuQDGyp3hNpp15gQQ== } + engines: { node: ">= 14" } + peerDependencies: + "@octokit/core": ">=3" + dependencies: + "@octokit/core": 4.2.4 + "@octokit/types": 9.3.2 + bottleneck: 2.19.5 + dev: true + + /@octokit/plugin-retry@5.0.4(@octokit/core@4.2.4): + resolution: + { integrity: sha512-hw00fDIhOgijy4aSxS6weWF5uqZVeoiC/AptLLyjL8KFCJRGRaXfcfgj76h/Z3cSLTjRsEIQnNCTig8INttL/g== } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": ">=3" + dependencies: + "@octokit/core": 4.2.4 + "@octokit/request-error": 4.0.2 + "@octokit/types": 10.0.0 + bottleneck: 2.19.5 + dev: true + + /@octokit/plugin-throttling@5.2.3(@octokit/core@4.2.4): + resolution: + { integrity: sha512-C9CFg9mrf6cugneKiaI841iG8DOv6P5XXkjmiNNut+swePxQ7RWEdAZRp5rJoE1hjsIqiYcKa/ZkOQ+ujPI39Q== } + engines: { node: ">= 14" } + peerDependencies: + "@octokit/core": ^4.0.0 + dependencies: + "@octokit/core": 4.2.4 + "@octokit/types": 9.3.2 + bottleneck: 2.19.5 + dev: true + + /@octokit/plugin-throttling@6.1.0(@octokit/core@4.2.4): + resolution: + { integrity: sha512-JqMbTiPC0sUSTsLQsdq3JVx1mx8UtTo5mwR80YqPXE93+XhevvSyOR1rO2Z+NbO/r0TK4hqFJSSi/9oIZBxZTg== } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": ^4.0.0 + dependencies: + "@octokit/core": 4.2.4 + "@octokit/types": 9.3.2 + bottleneck: 2.19.5 + dev: true + + /@octokit/request-error@3.0.3: + resolution: + { integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== } + engines: { node: ">= 14" } + dependencies: + "@octokit/types": 9.3.2 + deprecation: 2.3.1 + once: 1.4.0 + dev: true + + /@octokit/request-error@4.0.2: + resolution: + { integrity: sha512-uqwUEmZw3x4I9DGYq9fODVAAvcLsPQv97NRycP6syEFu5916M189VnNBW2zANNwqg3OiligNcAey7P0SET843w== } + engines: { node: ">= 18" } + dependencies: + "@octokit/types": 10.0.0 + deprecation: 2.3.1 + once: 1.4.0 + dev: true + + /@octokit/request@6.2.8: + resolution: + { integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw== } + engines: { node: ">= 14" } + dependencies: + "@octokit/endpoint": 7.0.6 + "@octokit/request-error": 3.0.3 + "@octokit/types": 9.3.2 + is-plain-object: 5.0.0 + node-fetch: 2.6.11 + universal-user-agent: 6.0.0 + transitivePeerDependencies: + - encoding + dev: true + + /@octokit/tsconfig@1.0.2: + resolution: + { integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA== } + dev: true + + /@octokit/tsconfig@2.0.0: + resolution: + { integrity: sha512-tWnrai3quGt8+gRN2edzo9fmraWekeryXPeXDomMw2oFSpu/lH3VSWGn/q4V+rwjTRMeeXk/ci623/01Zet4VQ== } + dev: true + + /@octokit/types@10.0.0: + resolution: + { integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg== } + dependencies: + "@octokit/openapi-types": 18.0.0 + dev: true + + /@octokit/types@9.3.2: + resolution: + { integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA== } + dependencies: + "@octokit/openapi-types": 18.0.0 + dev: true + + /@octokit/webhooks-methods@3.0.3: + resolution: + { integrity: sha512-2vM+DCNTJ5vL62O5LagMru6XnYhV4fJslK+5YUkTa6rWlW2S+Tqs1lF9Wr9OGqHfVwpBj3TeztWfVON/eUoW1Q== } + engines: { node: ">= 14" } + dev: true + + /@octokit/webhooks-types@6.11.0: + resolution: + { integrity: sha512-AanzbulOHljrku1NGfafxdpTCfw2ENaWzH01N2vqQM+cUFbk868Cgh0xylz0JIM9BoKbfI++bdD6EYX0Q/UTEw== } + dev: true + + /@octokit/webhooks@10.9.1: + resolution: + { integrity: sha512-5NXU4VfsNOo2VSU/SrLrpPH2Z1ZVDOWFcET4EpnEBX1uh/v8Uz65UVuHIRx5TZiXhnWyRE9AO1PXHa+M/iWwZA== } + engines: { node: ">= 14" } + dependencies: + "@octokit/request-error": 3.0.3 + "@octokit/webhooks-methods": 3.0.3 + "@octokit/webhooks-types": 6.11.0 + aggregate-error: 3.1.0 + dev: true + + /@pkgjs/parseargs@0.11.0: + resolution: + { integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== } + engines: { node: ">=14" } + requiresBuild: true + dev: true + optional: true + + /@pnpm/config.env-replace@1.1.0: + resolution: + { integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w== } + engines: { node: ">=12.22.0" } + dev: true + + /@pnpm/network.ca-file@1.0.2: + resolution: + { integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA== } + engines: { node: ">=12.22.0" } + dependencies: + graceful-fs: 4.2.10 + dev: true + + /@pnpm/npm-conf@2.2.2: + resolution: + { integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA== } + engines: { node: ">=12" } + dependencies: + "@pnpm/config.env-replace": 1.1.0 + "@pnpm/network.ca-file": 1.0.2 + config-chain: 1.1.13 + dev: true + + /@rollup/plugin-commonjs@25.0.2(rollup@3.26.0): + resolution: + { integrity: sha512-NGTwaJxIO0klMs+WSFFtBP7b9TdTJ3K76HZkewT8/+yHzMiUGVQgaPtLQxNVYIgT5F7lxkEyVID+yS3K7bhCow== } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^2.68.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + "@rollup/pluginutils": 5.0.2(rollup@3.26.0) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 8.1.0 + is-reference: 1.2.1 + magic-string: 0.27.0 + rollup: 3.26.0 + dev: true + + /@rollup/plugin-json@6.0.0(rollup@3.26.0): + resolution: + { integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w== } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + "@rollup/pluginutils": 5.0.2(rollup@3.26.0) + rollup: 3.26.0 + dev: true + + /@rollup/plugin-node-resolve@15.1.0(rollup@3.26.0): + resolution: + { integrity: sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA== } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^2.78.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + "@rollup/pluginutils": 5.0.2(rollup@3.26.0) + "@types/resolve": 1.20.2 + deepmerge: 4.3.1 + is-builtin-module: 3.2.1 + is-module: 1.0.0 + resolve: 1.22.2 + rollup: 3.26.0 + dev: true + + /@rollup/plugin-terser@0.4.3(rollup@3.26.0): + resolution: + { integrity: sha512-EF0oejTMtkyhrkwCdg0HJ0IpkcaVg1MMSf2olHb2Jp+1mnLM04OhjpJWGma4HobiDTF0WCyViWuvadyE9ch2XA== } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^2.x || ^3.x + peerDependenciesMeta: + rollup: + optional: true + dependencies: + rollup: 3.26.0 + serialize-javascript: 6.0.1 + smob: 1.4.0 + terser: 5.18.1 + dev: true + + /@rollup/pluginutils@5.0.2(rollup@3.26.0): + resolution: + { integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA== } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + "@types/estree": 1.0.1 + estree-walker: 2.0.2 + picomatch: 2.3.1 + rollup: 3.26.0 + dev: true + + /@semantic-release/changelog@6.0.3(semantic-release@21.0.7): + resolution: + { integrity: sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag== } + engines: { node: ">=14.17" } + peerDependencies: + semantic-release: ">=18.0.0" + dependencies: + "@semantic-release/error": 3.0.0 + aggregate-error: 3.1.0 + fs-extra: 11.1.1 + lodash: 4.17.21 + semantic-release: 21.0.7 + dev: true + + /@semantic-release/commit-analyzer@10.0.1(semantic-release@21.0.7): + resolution: + { integrity: sha512-9ejHzTAijYs9z246sY/dKBatmOPcd0GQ7lH4MgLCkv1q4GCiDZRkjHJkaQZXZVaK7mJybS+sH3Ng6G8i3pYMGQ== } + engines: { node: ">=18" } + peerDependencies: + semantic-release: ">=20.1.0" + dependencies: + conventional-changelog-angular: 6.0.0 + conventional-commits-filter: 3.0.0 + conventional-commits-parser: 4.0.0 + debug: 4.3.4(supports-color@8.1.1) + import-from: 4.0.0 + lodash-es: 4.17.21 + micromatch: 4.0.5 + semantic-release: 21.0.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@semantic-release/error@3.0.0: + resolution: + { integrity: sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw== } + engines: { node: ">=14.17" } + dev: true + + /@semantic-release/error@4.0.0: + resolution: + { integrity: sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ== } + engines: { node: ">=18" } + dev: true + + /@semantic-release/exec@6.0.3(semantic-release@21.0.7): + resolution: + { integrity: sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ== } + engines: { node: ">=14.17" } + peerDependencies: + semantic-release: ">=18.0.0" + dependencies: + "@semantic-release/error": 3.0.0 + aggregate-error: 3.1.0 + debug: 4.3.4(supports-color@8.1.1) + execa: 5.1.1 + lodash: 4.17.21 + parse-json: 5.2.0 + semantic-release: 21.0.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@semantic-release/git@10.0.1(semantic-release@21.0.7): + resolution: + { integrity: sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w== } + engines: { node: ">=14.17" } + peerDependencies: + semantic-release: ">=18.0.0" + dependencies: + "@semantic-release/error": 3.0.0 + aggregate-error: 3.1.0 + debug: 4.3.4(supports-color@8.1.1) + dir-glob: 3.0.1 + execa: 5.1.1 + lodash: 4.17.21 + micromatch: 4.0.5 + p-reduce: 2.1.0 + semantic-release: 21.0.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@semantic-release/github@9.0.3(semantic-release@21.0.7): + resolution: + { integrity: sha512-X6gq4USKVlCxPwIIyXb99jU7gwVWlnsKOevs+OyABRdoqc+OIRITbFmrrYU3eE1vGMGk+Qu/GAoLUQQQwC3YOA== } + engines: { node: ">=18" } + peerDependencies: + semantic-release: ">=20.1.0" + dependencies: + "@octokit/core": 4.2.4 + "@octokit/plugin-paginate-rest": 7.1.2(@octokit/core@4.2.4) + "@octokit/plugin-retry": 5.0.4(@octokit/core@4.2.4) + "@octokit/plugin-throttling": 6.1.0(@octokit/core@4.2.4) + "@semantic-release/error": 4.0.0 + aggregate-error: 4.0.1 + debug: 4.3.4(supports-color@8.1.1) + dir-glob: 3.0.1 + globby: 13.2.0 + http-proxy-agent: 7.0.0 + https-proxy-agent: 7.0.0 + issue-parser: 6.0.0 + lodash-es: 4.17.21 + mime: 3.0.0 + p-filter: 3.0.0 + semantic-release: 21.0.7 + url-join: 5.0.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@semantic-release/npm@10.0.4(semantic-release@21.0.7): + resolution: + { integrity: sha512-6R3timIQ7VoL2QWRkc9DG8v74RQtRp7UOe/2KbNaqwJ815qOibAv65bH3RtTEhs4axEaHoZf7HDgFs5opaZ9Jw== } + engines: { node: ">=18" } + peerDependencies: + semantic-release: ">=20.1.0" + dependencies: + "@semantic-release/error": 4.0.0 + aggregate-error: 4.0.1 + execa: 7.1.1 + fs-extra: 11.1.1 + lodash-es: 4.17.21 + nerf-dart: 1.0.0 + normalize-url: 8.0.0 + npm: 9.7.1 + rc: 1.2.8 + read-pkg: 8.0.0 + registry-auth-token: 5.0.2 + semantic-release: 21.0.7 + semver: 7.5.2 + tempy: 3.0.0 + dev: true + + /@semantic-release/release-notes-generator@11.0.3(semantic-release@21.0.7): + resolution: + { integrity: sha512-NU77dWKQf+QcZrv/Hcp3DPeSxglPu8hYKCipGxAPpeaneLkg6S0zfTVug4tg4mfDhZHC6RtoI7ljQDK8VoJ2Dw== } + engines: { node: ">=18" } + peerDependencies: + semantic-release: ">=20.1.0" + dependencies: + conventional-changelog-angular: 6.0.0 + conventional-changelog-writer: 6.0.0 + conventional-commits-filter: 3.0.0 + conventional-commits-parser: 4.0.0 + debug: 4.3.4(supports-color@8.1.1) + get-stream: 7.0.0 + import-from: 4.0.0 + into-stream: 7.0.0 + lodash-es: 4.17.21 + read-pkg-up: 9.1.0 + semantic-release: 21.0.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@sinclair/typebox@0.27.8: + resolution: + { integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== } + dev: true + + /@tootallnate/once@2.0.0: + resolution: + { integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== } + engines: { node: ">= 10" } + dev: true + + /@tsconfig/node10@1.0.9: + resolution: + { integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== } + dev: true + + /@tsconfig/node12@1.0.11: + resolution: + { integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== } + dev: true + + /@tsconfig/node14@1.0.3: + resolution: + { integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== } + dev: true + + /@tsconfig/node16@1.0.4: + resolution: + { integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== } + dev: true + + /@types/aws-lambda@8.10.119: + resolution: + { integrity: sha512-Vqm22aZrCvCd6I5g1SvpW151jfqwTzEZ7XJ3yZ6xaZG31nUEOEyzzVImjRcsN8Wi/QyPxId/x8GTtgIbsy8kEw== } + dev: true + + /@types/babel-types@7.0.11: + resolution: + { integrity: sha512-pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A== } + dev: true + + /@types/babylon@6.16.6: + resolution: + { integrity: sha512-G4yqdVlhr6YhzLXFKy5F7HtRBU8Y23+iWy7UKthMq/OSQnL1hbsoeXESQ2LY8zEDlknipDG3nRGhUC9tkwvy/w== } + dependencies: + "@types/babel-types": 7.0.11 + dev: true + + /@types/btoa-lite@1.0.0: + resolution: + { integrity: sha512-wJsiX1tosQ+J5+bY5LrSahHxr2wT+uME5UDwdN1kg4frt40euqA+wzECkmq4t5QbveHiJepfdThgQrPw6KiSlg== } + dev: true + + /@types/chai-subset@1.3.3: + resolution: + { integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw== } + dependencies: + "@types/chai": 4.3.5 + dev: true + + /@types/chai@4.3.5: + resolution: + { integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng== } + dev: true + + /@types/cypress__code-coverage@3.10.0: + resolution: + { integrity: sha512-wzgBnjD5yyZhpOKNxKNqptAMgzY2klexrA97loeUa/63Rmnnsno2y/AmcaPSkTBaqDjDXgyEAxTiCgWeMGGOuA== } + dependencies: + cypress: 12.16.0 + dev: true + + /@types/eslint-scope@3.7.4: + resolution: + { integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== } + dependencies: + "@types/eslint": 8.40.2 + "@types/estree": 1.0.1 + dev: true + + /@types/eslint@8.40.2: + resolution: + { integrity: sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ== } + dependencies: + "@types/estree": 1.0.1 + "@types/json-schema": 7.0.12 + dev: true + + /@types/estree@1.0.1: + resolution: + { integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== } + dev: true + + /@types/istanbul-lib-coverage@2.0.4: + resolution: + { integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== } + dev: true + + /@types/js-cookie@3.0.3: + resolution: + { integrity: sha512-Xe7IImK09HP1sv2M/aI+48a20VX+TdRJucfq4vfRVy6nWN8PYPOEnlMRSgxJAgYQIXJVL8dZ4/ilAM7dWNaOww== } + dev: true + + /@types/json-schema@7.0.12: + resolution: + { integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== } + dev: true + + /@types/json5@0.0.29: + resolution: + { integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== } + dev: true + + /@types/jsonwebtoken@9.0.2: + resolution: + { integrity: sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q== } + dependencies: + "@types/node": 20.3.3 + dev: true + + /@types/linkify-it@3.0.2: + resolution: + { integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA== } + dev: true + + /@types/lodash-es@4.17.7: + resolution: + { integrity: sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ== } + dependencies: + "@types/lodash": 4.14.195 + dev: true + + /@types/lodash@4.14.195: + resolution: + { integrity: sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg== } + dev: true + + /@types/markdown-it@12.2.3: + resolution: + { integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ== } + dependencies: + "@types/linkify-it": 3.0.2 + "@types/mdurl": 1.0.2 + dev: true + + /@types/mdurl@1.0.2: + resolution: + { integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== } + dev: true + + /@types/minimist@1.2.2: + resolution: + { integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== } + dev: true + + /@types/node@14.18.53: + resolution: + { integrity: sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A== } + dev: true + + /@types/node@20.3.3: + resolution: + { integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw== } + dev: true + + /@types/normalize-package-data@2.4.1: + resolution: + { integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== } + dev: true + + /@types/resolve@1.20.2: + resolution: + { integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q== } + dev: true + + /@types/semver@7.5.0: + resolution: + { integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== } + dev: true + + /@types/sinonjs__fake-timers@8.1.1: + resolution: + { integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g== } + dev: true + + /@types/sizzle@2.3.3: + resolution: + { integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ== } + dev: true + + /@types/web-bluetooth@0.0.14: + resolution: + { integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A== } + dev: true + + /@types/yauzl@2.10.0: + resolution: + { integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw== } + requiresBuild: true + dependencies: + "@types/node": 20.3.3 + dev: true + optional: true + + /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.1.6): + resolution: + { integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + "@typescript-eslint/parser": ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@eslint-community/regexpp": 4.5.1 + "@typescript-eslint/parser": 5.61.0(eslint@8.44.0)(typescript@5.1.6) + "@typescript-eslint/scope-manager": 5.61.0 + "@typescript-eslint/type-utils": 5.61.0(eslint@8.44.0)(typescript@5.1.6) + "@typescript-eslint/utils": 5.61.0(eslint@8.44.0)(typescript@5.1.6) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.44.0 + graphemer: 1.4.0 + ignore: 5.2.4 + natural-compare-lite: 1.4.0 + semver: 7.5.2 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.61.0(eslint@8.44.0)(typescript@5.1.6): + resolution: + { integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/scope-manager": 5.61.0 + "@typescript-eslint/types": 5.61.0 + "@typescript-eslint/typescript-estree": 5.61.0(typescript@5.1.6) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.44.0 + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@5.61.0: + resolution: + { integrity: sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + "@typescript-eslint/types": 5.61.0 + "@typescript-eslint/visitor-keys": 5.61.0 + dev: true + + /@typescript-eslint/type-utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): + resolution: + { integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: "*" + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/typescript-estree": 5.61.0(typescript@5.1.6) + "@typescript-eslint/utils": 5.61.0(eslint@8.44.0)(typescript@5.1.6) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.44.0 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types@5.61.0: + resolution: + { integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /@typescript-eslint/typescript-estree@5.61.0(typescript@5.1.6): + resolution: + { integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + dependencies: + "@typescript-eslint/types": 5.61.0 + "@typescript-eslint/visitor-keys": 5.61.0 + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.2 + tsutils: 3.21.0(typescript@5.1.6) + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.61.0(eslint@8.44.0)(typescript@5.1.6): + resolution: + { integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + "@eslint-community/eslint-utils": 4.4.0(eslint@8.44.0) + "@types/json-schema": 7.0.12 + "@types/semver": 7.5.0 + "@typescript-eslint/scope-manager": 5.61.0 + "@typescript-eslint/types": 5.61.0 + "@typescript-eslint/typescript-estree": 5.61.0(typescript@5.1.6) + eslint: 8.44.0 + eslint-scope: 5.1.1 + semver: 7.5.2 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@5.61.0: + resolution: + { integrity: sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + "@typescript-eslint/types": 5.61.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /@vitejs/plugin-vue@2.3.4(vite@2.9.16)(vue@3.2.33): + resolution: + { integrity: sha512-IfFNbtkbIm36O9KB8QodlwwYvTEsJb4Lll4c2IwB3VHc2gie2mSPtSzL0eYay7X2jd/2WX02FjSGTWR6OPr/zg== } + engines: { node: ">=12.0.0" } + peerDependencies: + vite: ^2.5.10 + vue: ^3.2.25 + dependencies: + vite: 2.9.16 + vue: 3.2.33 + dev: true + + /@vitest/coverage-v8@0.32.4(vitest@0.32.4): + resolution: + { integrity: sha512-itiCYY3TmWEK+5wnFBoNr0ZA+adACp7Op1r2TeX5dPOgU2See7+Gx2NlK2lVMHVxfPsu5z9jszKa3i//eR+hqg== } + peerDependencies: + vitest: ">=0.32.0 <1" + dependencies: + "@ampproject/remapping": 2.2.1 + "@bcoe/v8-coverage": 0.2.3 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.5 + magic-string: 0.30.0 + picocolors: 1.0.0 + std-env: 3.3.3 + test-exclude: 6.0.0 + v8-to-istanbul: 9.1.0 + vitest: 0.32.4(jsdom@22.1.0) + transitivePeerDependencies: + - supports-color + dev: true + + /@vitest/expect@0.32.4: + resolution: + { integrity: sha512-m7EPUqmGIwIeoU763N+ivkFjTzbaBn0n9evsTOcde03ugy2avPs3kZbYmw3DkcH1j5mxhMhdamJkLQ6dM1bk/A== } + dependencies: + "@vitest/spy": 0.32.4 + "@vitest/utils": 0.32.4 + chai: 4.3.7 + dev: true + + /@vitest/runner@0.32.4: + resolution: + { integrity: sha512-cHOVCkiRazobgdKLnczmz2oaKK9GJOw6ZyRcaPdssO1ej+wzHVIkWiCiNacb3TTYPdzMddYkCgMjZ4r8C0JFCw== } + dependencies: + "@vitest/utils": 0.32.4 + p-limit: 4.0.0 + pathe: 1.1.1 + dev: true + + /@vitest/snapshot@0.32.4: + resolution: + { integrity: sha512-IRpyqn9t14uqsFlVI2d7DFMImGMs1Q9218of40bdQQgMePwVdmix33yMNnebXcTzDU5eiV3eUsoxxH5v0x/IQA== } + dependencies: + magic-string: 0.30.0 + pathe: 1.1.1 + pretty-format: 29.6.0 + dev: true + + /@vitest/spy@0.32.4: + resolution: + { integrity: sha512-oA7rCOqVOOpE6rEoXuCOADX7Lla1LIa4hljI2MSccbpec54q+oifhziZIJXxlE/CvI2E+ElhBHzVu0VEvJGQKQ== } + dependencies: + tinyspy: 2.1.1 + dev: true + + /@vitest/utils@0.32.4: + resolution: + { integrity: sha512-Gwnl8dhd1uJ+HXrYyV0eRqfmk9ek1ASE/LWfTCuWMw+d07ogHqp4hEAV28NiecimK6UY9DpSEPh+pXBA5gtTBg== } + dependencies: + diff-sequences: 29.4.3 + loupe: 2.3.6 + pretty-format: 29.6.0 + dev: true + + /@vue/compiler-core@3.2.33: + resolution: + { integrity: sha512-AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw== } + dependencies: + "@babel/parser": 7.22.5 + "@vue/shared": 3.2.33 + estree-walker: 2.0.2 + source-map: 0.6.1 + dev: true + + /@vue/compiler-dom@3.2.33: + resolution: + { integrity: sha512-GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ== } + dependencies: + "@vue/compiler-core": 3.2.33 + "@vue/shared": 3.2.33 + dev: true + + /@vue/compiler-sfc@3.2.33: + resolution: + { integrity: sha512-H8D0WqagCr295pQjUYyO8P3IejM3vEzeCO1apzByAEaAR/WimhMYczHfZVvlCE/9yBaEu/eu9RdiWr0kF8b71Q== } + dependencies: + "@babel/parser": 7.22.5 + "@vue/compiler-core": 3.2.33 + "@vue/compiler-dom": 3.2.33 + "@vue/compiler-ssr": 3.2.33 + "@vue/reactivity-transform": 3.2.33 + "@vue/shared": 3.2.33 + estree-walker: 2.0.2 + magic-string: 0.25.9 + postcss: 8.4.24 + source-map: 0.6.1 + dev: true + + /@vue/compiler-ssr@3.2.33: + resolution: + { integrity: sha512-XQh1Xdk3VquDpXsnoCd7JnMoWec9CfAzQDQsaMcSU79OrrO2PNR0ErlIjm/mGq3GmBfkQjzZACV+7GhfRB8xMQ== } + dependencies: + "@vue/compiler-dom": 3.2.33 + "@vue/shared": 3.2.33 + dev: true + + /@vue/reactivity-transform@3.2.33: + resolution: + { integrity: sha512-4UL5KOIvSQb254aqenW4q34qMXbfZcmEsV/yVidLUgvwYQQ/D21bGX3DlgPUGI3c4C+iOnNmDCkIxkILoX/Pyw== } + dependencies: + "@babel/parser": 7.22.5 + "@vue/compiler-core": 3.2.33 + "@vue/shared": 3.2.33 + estree-walker: 2.0.2 + magic-string: 0.25.9 + dev: true + + /@vue/reactivity@3.2.33: + resolution: + { integrity: sha512-62Sq0mp9/0bLmDuxuLD5CIaMG2susFAGARLuZ/5jkU1FCf9EDbwUuF+BO8Ub3Rbodx0ziIecM/NsmyjardBxfQ== } + dependencies: + "@vue/shared": 3.2.33 + dev: true + + /@vue/runtime-core@3.2.33: + resolution: + { integrity: sha512-N2D2vfaXsBPhzCV3JsXQa2NECjxP3eXgZlFqKh4tgakp3iX6LCGv76DLlc+IfFZq+TW10Y8QUfeihXOupJ1dGw== } + dependencies: + "@vue/reactivity": 3.2.33 + "@vue/shared": 3.2.33 + dev: true + + /@vue/runtime-dom@3.2.33: + resolution: + { integrity: sha512-LSrJ6W7CZTSUygX5s8aFkraDWlO6K4geOwA3quFF2O+hC3QuAMZt/0Xb7JKE3C4JD4pFwCSO7oCrZmZ0BIJUnw== } + dependencies: + "@vue/runtime-core": 3.2.33 + "@vue/shared": 3.2.33 + csstype: 2.6.21 + dev: true + + /@vue/server-renderer@3.2.33(vue@3.2.33): + resolution: + { integrity: sha512-4jpJHRD4ORv8PlbYi+/MfP8ec1okz6rybe36MdpkDrGIdEItHEUyaHSKvz+ptNEyQpALmmVfRteHkU9F8vxOew== } + peerDependencies: + vue: 3.2.33 + dependencies: + "@vue/compiler-ssr": 3.2.33 + "@vue/shared": 3.2.33 + vue: 3.2.33 + dev: true + + /@vue/shared@3.2.33: + resolution: + { integrity: sha512-UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg== } + dev: true + + /@vueuse/core@8.9.4(vue@3.2.33): + resolution: + { integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q== } + peerDependencies: + "@vue/composition-api": ^1.1.0 + vue: ^2.6.0 || ^3.2.0 + peerDependenciesMeta: + "@vue/composition-api": + optional: true + vue: + optional: true + dependencies: + "@types/web-bluetooth": 0.0.14 + "@vueuse/metadata": 8.9.4 + "@vueuse/shared": 8.9.4(vue@3.2.33) + vue: 3.2.33 + vue-demi: 0.14.5(vue@3.2.33) + dev: true + + /@vueuse/metadata@8.9.4: + resolution: + { integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw== } + dev: true + + /@vueuse/shared@8.9.4(vue@3.2.33): + resolution: + { integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag== } + peerDependencies: + "@vue/composition-api": ^1.1.0 + vue: ^2.6.0 || ^3.2.0 + peerDependenciesMeta: + "@vue/composition-api": + optional: true + vue: + optional: true + dependencies: + vue: 3.2.33 + vue-demi: 0.14.5(vue@3.2.33) + dev: true + + /@webassemblyjs/ast@1.11.6: + resolution: + { integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q== } + dependencies: + "@webassemblyjs/helper-numbers": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + dev: true + + /@webassemblyjs/floating-point-hex-parser@1.11.6: + resolution: + { integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== } + dev: true + + /@webassemblyjs/helper-api-error@1.11.6: + resolution: + { integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== } + dev: true + + /@webassemblyjs/helper-buffer@1.11.6: + resolution: + { integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA== } + dev: true + + /@webassemblyjs/helper-numbers@1.11.6: + resolution: + { integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== } + dependencies: + "@webassemblyjs/floating-point-hex-parser": 1.11.6 + "@webassemblyjs/helper-api-error": 1.11.6 + "@xtuc/long": 4.2.2 + dev: true + + /@webassemblyjs/helper-wasm-bytecode@1.11.6: + resolution: + { integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== } + dev: true + + /@webassemblyjs/helper-wasm-section@1.11.6: + resolution: + { integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g== } + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + dev: true + + /@webassemblyjs/ieee754@1.11.6: + resolution: + { integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== } + dependencies: + "@xtuc/ieee754": 1.2.0 + dev: true + + /@webassemblyjs/leb128@1.11.6: + resolution: + { integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== } + dependencies: + "@xtuc/long": 4.2.2 + dev: true + + /@webassemblyjs/utf8@1.11.6: + resolution: + { integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== } + dev: true + + /@webassemblyjs/wasm-edit@1.11.6: + resolution: + { integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw== } + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/helper-wasm-section": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + "@webassemblyjs/wasm-opt": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + "@webassemblyjs/wast-printer": 1.11.6 + dev: true + + /@webassemblyjs/wasm-gen@1.11.6: + resolution: + { integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA== } + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 + dev: true + + /@webassemblyjs/wasm-opt@1.11.6: + resolution: + { integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g== } + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + dev: true + + /@webassemblyjs/wasm-parser@1.11.6: + resolution: + { integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ== } + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-api-error": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 + dev: true + + /@webassemblyjs/wast-printer@1.11.6: + resolution: + { integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A== } + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@xtuc/long": 4.2.2 + dev: true + + /@xtuc/ieee754@1.2.0: + resolution: + { integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== } + dev: true + + /@xtuc/long@4.2.2: + resolution: + { integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== } + dev: true + + /JSONStream@1.3.5: + resolution: + { integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== } + hasBin: true + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + dev: true + + /abab@2.0.6: + resolution: + { integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== } + dev: true + + /ace-builds@1.22.1: + resolution: + { integrity: sha512-o5RGTPBIiRxguWNors3pT6KuLqj0a2NvNLoqir7/2LLiFm34PJV3BMq4sl9kjPayo4+lmd99m6zAq+XPdhyHQA== } + dev: true + + /acorn-globals@3.1.0: + resolution: + { integrity: sha512-uWttZCk96+7itPxK8xCzY86PnxKTMrReKDqrHzv42VQY0K30PUO8WY13WMOuI+cOdX4EIdzdvQ8k6jkuGRFMYw== } + dependencies: + acorn: 4.0.13 + dev: true + + /acorn-import-assertions@1.9.0(acorn@8.9.0): + resolution: + { integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== } + peerDependencies: + acorn: ^8 + dependencies: + acorn: 8.9.0 + dev: true + + /acorn-jsx@5.3.2(acorn@8.9.0): + resolution: + { integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.9.0 + dev: true + + /acorn-walk@8.2.0: + resolution: + { integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== } + engines: { node: ">=0.4.0" } + dev: true + + /acorn@3.3.0: + resolution: + { integrity: sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw== } + engines: { node: ">=0.4.0" } + hasBin: true + dev: true + + /acorn@4.0.13: + resolution: + { integrity: sha512-fu2ygVGuMmlzG8ZeRJ0bvR41nsAkxxhbyk8bZ1SS521Z7vmgJFTQQlfz/Mp/nJexGBz+v8sC9bM6+lNgskt4Ug== } + engines: { node: ">=0.4.0" } + hasBin: true + dev: true + + /acorn@8.9.0: + resolution: + { integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ== } + engines: { node: ">=0.4.0" } + hasBin: true + dev: true + + /agent-base@6.0.2: + resolution: + { integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== } + engines: { node: ">= 6.0.0" } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /agent-base@7.1.0: + resolution: + { integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg== } + engines: { node: ">= 14" } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /aggregate-error@3.1.0: + resolution: + { integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== } + engines: { node: ">=8" } + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + dev: true + + /aggregate-error@4.0.1: + resolution: + { integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w== } + engines: { node: ">=12" } + dependencies: + clean-stack: 4.2.0 + indent-string: 5.0.0 + dev: true + + /ajv-formats@2.1.1(ajv@8.12.0): + resolution: + { integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== } + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + dependencies: + ajv: 8.12.0 + dev: true + + /ajv-keywords@3.5.2(ajv@6.12.6): + resolution: + { integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== } + peerDependencies: + ajv: ^6.9.1 + dependencies: + ajv: 6.12.6 + dev: true + + /ajv-keywords@5.1.0(ajv@8.12.0): + resolution: + { integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== } + peerDependencies: + ajv: ^8.8.2 + dependencies: + ajv: 8.12.0 + fast-deep-equal: 3.1.3 + dev: true + + /ajv@6.12.6: + resolution: + { integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== } + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ajv@8.12.0: + resolution: + { integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== } + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /algoliasearch@4.17.2: + resolution: + { integrity: sha512-VFu43JJNYIW74awp7oeQcQsPcxOhd8psqBDTfyNO2Zt6L1NqnNMTVnaIdQ+8dtKqUDBqQZp0szPxECvX8CK2Fg== } + dependencies: + "@algolia/cache-browser-local-storage": 4.17.2 + "@algolia/cache-common": 4.17.2 + "@algolia/cache-in-memory": 4.17.2 + "@algolia/client-account": 4.17.2 + "@algolia/client-analytics": 4.17.2 + "@algolia/client-common": 4.17.2 + "@algolia/client-personalization": 4.17.2 + "@algolia/client-search": 4.17.2 + "@algolia/logger-common": 4.17.2 + "@algolia/logger-console": 4.17.2 + "@algolia/requester-browser-xhr": 4.17.2 + "@algolia/requester-common": 4.17.2 + "@algolia/requester-node-http": 4.17.2 + "@algolia/transporter": 4.17.2 + dev: true + + /align-text@0.1.4: + resolution: + { integrity: sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg== } + engines: { node: ">=0.10.0" } + dependencies: + kind-of: 3.2.2 + longest: 1.0.1 + repeat-string: 1.6.1 + dev: true + + /ansi-colors@4.1.3: + resolution: + { integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== } + engines: { node: ">=6" } + dev: true + + /ansi-escapes@4.3.2: + resolution: + { integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== } + engines: { node: ">=8" } + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-escapes@6.2.0: + resolution: + { integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw== } + engines: { node: ">=14.16" } + dependencies: + type-fest: 3.12.0 + dev: true + + /ansi-regex@5.0.1: + resolution: + { integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== } + engines: { node: ">=8" } + dev: true + + /ansi-regex@6.0.1: + resolution: + { integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== } + engines: { node: ">=12" } + dev: true + + /ansi-styles@3.2.1: + resolution: + { integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== } + engines: { node: ">=4" } + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: + { integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== } + engines: { node: ">=8" } + dependencies: + color-convert: 2.0.1 + dev: true + + /ansi-styles@5.2.0: + resolution: + { integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== } + engines: { node: ">=10" } + dev: true + + /ansi-styles@6.2.1: + resolution: + { integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== } + engines: { node: ">=12" } + dev: true + + /ansicolors@0.3.2: + resolution: + { integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg== } + dev: true + + /anymatch@3.1.3: + resolution: + { integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== } + engines: { node: ">= 8" } + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /append-transform@2.0.0: + resolution: + { integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg== } + engines: { node: ">=8" } + dependencies: + default-require-extensions: 3.0.1 + dev: true + + /arch@2.2.0: + resolution: + { integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== } + dev: true + + /archy@1.0.0: + resolution: + { integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== } + dev: true + + /arg@4.1.3: + resolution: + { integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== } + dev: true + + /argparse@1.0.10: + resolution: + { integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== } + dependencies: + sprintf-js: 1.0.3 + dev: true + + /argparse@2.0.1: + resolution: + { integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== } + dev: true + + /argv-formatter@1.0.0: + resolution: + { integrity: sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw== } + dev: true + + /array-buffer-byte-length@1.0.0: + resolution: + { integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== } + dependencies: + call-bind: 1.0.2 + is-array-buffer: 3.0.2 + dev: true + + /array-ify@1.0.0: + resolution: + { integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== } + dev: true + + /array-includes@3.1.6: + resolution: + { integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + get-intrinsic: 1.2.1 + is-string: 1.0.7 + dev: true + + /array-union@2.1.0: + resolution: + { integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== } + engines: { node: ">=8" } + dev: true + + /array.prototype.flat@1.3.1: + resolution: + { integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.flatmap@1.3.1: + resolution: + { integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + es-shim-unscopables: 1.0.0 + dev: true + + /arrify@1.0.1: + resolution: + { integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== } + engines: { node: ">=0.10.0" } + dev: true + + /asap@2.0.6: + resolution: + { integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== } + dev: true + + /asn1@0.2.6: + resolution: + { integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== } + dependencies: + safer-buffer: 2.1.2 + dev: true + + /assert-plus@1.0.0: + resolution: + { integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== } + engines: { node: ">=0.8" } + dev: true + + /assertion-error@1.1.0: + resolution: + { integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== } + dev: true + + /ast-types@0.12.4: + resolution: + { integrity: sha512-ky/YVYCbtVAS8TdMIaTiPFHwEpRB5z1hctepJplTr3UW5q8TDrpIMCILyk8pmLxGtn2KCtC/lSn7zOsaI7nzDw== } + engines: { node: ">=4" } + dev: true + + /ast-types@0.14.2: + resolution: + { integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA== } + engines: { node: ">=4" } + dependencies: + tslib: 2.5.3 + dev: true + + /astral-regex@2.0.0: + resolution: + { integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== } + engines: { node: ">=8" } + dev: true + + /async@3.2.4: + resolution: + { integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== } + dev: true + + /asynckit@0.4.0: + resolution: + { integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== } + dev: true + + /at-least-node@1.0.0: + resolution: + { integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== } + engines: { node: ">= 4.0.0" } + dev: true + + /available-typed-arrays@1.0.5: + resolution: + { integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== } + engines: { node: ">= 0.4" } + dev: true + + /aws-sign2@0.7.0: + resolution: + { integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== } + dev: true + + /aws4@1.12.0: + resolution: + { integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== } + dev: true + + /babel-loader@9.1.2(@babel/core@7.22.5)(webpack@5.88.1): + resolution: + { integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA== } + engines: { node: ">= 14.15.0" } + peerDependencies: + "@babel/core": ^7.12.0 + webpack: ">=5" + dependencies: + "@babel/core": 7.22.5 + find-cache-dir: 3.3.2 + schema-utils: 4.2.0 + webpack: 5.88.1 + dev: true + + /babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.22.5): + resolution: + { integrity: sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.22.6 + "@babel/core": 7.22.5 + "@babel/helper-define-polyfill-provider": 0.4.0(@babel/core@7.22.5) + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3@0.8.1(@babel/core@7.22.5): + resolution: + { integrity: sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-define-polyfill-provider": 0.4.0(@babel/core@7.22.5) + core-js-compat: 3.31.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.22.5): + resolution: + { integrity: sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g== } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.22.5 + "@babel/helper-define-polyfill-provider": 0.4.0(@babel/core@7.22.5) + transitivePeerDependencies: + - supports-color + dev: true + + /babel-runtime@6.26.0: + resolution: + { integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== } + dependencies: + core-js: 2.6.12 + regenerator-runtime: 0.11.1 + dev: true + + /babel-types@6.26.0: + resolution: + { integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g== } + dependencies: + babel-runtime: 6.26.0 + esutils: 2.0.3 + lodash: 4.17.21 + to-fast-properties: 1.0.3 + dev: true + + /babylon@6.18.0: + resolution: + { integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== } + hasBin: true + dev: true + + /balanced-match@1.0.2: + resolution: + { integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== } + dev: true + + /base64-js@1.5.1: + resolution: + { integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== } + dev: true + + /bcrypt-pbkdf@1.0.2: + resolution: + { integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== } + dependencies: + tweetnacl: 0.14.5 + dev: true + + /before-after-hook@2.2.3: + resolution: + { integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== } + dev: true + + /better-docs@2.7.2(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2): + resolution: + { integrity: sha512-aIOsGhhcTIDAJfBTABIPDs3q98dfNF85yUwmKShXb3ZG6e7s+ojBePiDqvFwy/MpnjYwuSbuzkbEv4iPWcSuTQ== } + engines: { node: ">=12" } + peerDependencies: + react: ^17.0.2 + react-dom: ^17.0.2 + dependencies: + brace: 0.11.1 + react: 17.0.2 + react-ace: 9.5.0(react-dom@17.0.2)(react@17.0.2) + react-docgen: 5.4.3 + react-dom: 17.0.2(react@17.0.2) + react-frame-component: 5.2.6(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) + typescript: 4.9.5 + underscore: 1.13.6 + vue-docgen-api: 3.26.0 + vue2-ace-editor: 0.0.15 + transitivePeerDependencies: + - prop-types + - supports-color + dev: true + + /binary-extensions@2.2.0: + resolution: + { integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== } + engines: { node: ">=8" } + dev: true + + /bl@4.1.0: + resolution: + { integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== } + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: true + + /blob-util@2.0.2: + resolution: + { integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ== } + dev: true + + /bluebird@3.7.1: + resolution: + { integrity: sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg== } + dev: true + + /bluebird@3.7.2: + resolution: + { integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== } + dev: true + + /body-scroll-lock@4.0.0-beta.0: + resolution: + { integrity: sha512-a7tP5+0Mw3YlUJcGAKUqIBkYYGlYxk2fnCasq/FUph1hadxlTRjF+gAcZksxANnaMnALjxEddmSi/H3OR8ugcQ== } + dev: true + + /bottleneck@2.19.5: + resolution: + { integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw== } + dev: true + + /brace-expansion@1.1.11: + resolution: + { integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== } + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /brace-expansion@2.0.1: + resolution: + { integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== } + dependencies: + balanced-match: 1.0.2 + dev: true + + /brace@0.11.1: + resolution: + { integrity: sha512-Fc8Ne62jJlKHiG/ajlonC4Sd66Pq68fFwK4ihJGNZpGqboc324SQk+lRvMzpPRuJOmfrJefdG8/7JdWX4bzJ2Q== } + dev: true + + /braces@3.0.2: + resolution: + { integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== } + engines: { node: ">=8" } + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist@4.21.9: + resolution: + { integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + hasBin: true + dependencies: + caniuse-lite: 1.0.30001505 + electron-to-chromium: 1.4.435 + node-releases: 2.0.12 + update-browserslist-db: 1.0.11(browserslist@4.21.9) + dev: true + + /btoa-lite@1.0.0: + resolution: + { integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA== } + dev: true + + /buffer-crc32@0.2.13: + resolution: + { integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== } + dev: true + + /buffer-equal-constant-time@1.0.1: + resolution: + { integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA== } + dev: true + + /buffer-from@1.1.2: + resolution: + { integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== } + dev: true + + /buffer@5.7.1: + resolution: + { integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== } + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /builtin-modules@3.3.0: + resolution: + { integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== } + engines: { node: ">=6" } + dev: true + + /c8@7.14.0: + resolution: + { integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw== } + engines: { node: ">=10.12.0" } + hasBin: true + dependencies: + "@bcoe/v8-coverage": 0.2.3 + "@istanbuljs/schema": 0.1.3 + find-up: 5.0.0 + foreground-child: 2.0.0 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-report: 3.0.0 + istanbul-reports: 3.1.5 + rimraf: 3.0.2 + test-exclude: 6.0.0 + v8-to-istanbul: 9.1.0 + yargs: 16.2.0 + yargs-parser: 20.2.9 + dev: true + + /cac@6.7.14: + resolution: + { integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== } + engines: { node: ">=8" } + dev: true + + /cachedir@2.3.0: + resolution: + { integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== } + engines: { node: ">=6" } + dev: true + + /caching-transform@4.0.0: + resolution: + { integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA== } + engines: { node: ">=8" } + dependencies: + hasha: 5.2.2 + make-dir: 3.1.0 + package-hash: 4.0.0 + write-file-atomic: 3.0.3 + dev: true + + /call-bind@1.0.2: + resolution: + { integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== } + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.2.1 + dev: true + + /callsites@3.1.0: + resolution: + { integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== } + engines: { node: ">=6" } + dev: true + + /camelcase-keys@6.2.2: + resolution: + { integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== } + engines: { node: ">=8" } + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase@1.2.1: + resolution: + { integrity: sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g== } + engines: { node: ">=0.10.0" } + dev: true + + /camelcase@5.3.1: + resolution: + { integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== } + engines: { node: ">=6" } + dev: true + + /caniuse-lite@1.0.30001505: + resolution: + { integrity: sha512-jaAOR5zVtxHfL0NjZyflVTtXm3D3J9P15zSJ7HmQF8dSKGA6tqzQq+0ZI3xkjyQj46I4/M0K2GbMpcAFOcbr3A== } + dev: true + + /cardinal@2.1.1: + resolution: + { integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw== } + hasBin: true + dependencies: + ansicolors: 0.3.2 + redeyed: 2.1.1 + dev: true + + /caseless@0.12.0: + resolution: + { integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== } + dev: true + + /catharsis@0.9.0: + resolution: + { integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A== } + engines: { node: ">= 10" } + dependencies: + lodash: 4.17.21 + dev: true + + /center-align@0.1.3: + resolution: + { integrity: sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ== } + engines: { node: ">=0.10.0" } + dependencies: + align-text: 0.1.4 + lazy-cache: 1.0.4 + dev: true + + /chai@4.3.7: + resolution: + { integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A== } + engines: { node: ">=4" } + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.2 + deep-eql: 4.1.3 + get-func-name: 2.0.0 + loupe: 2.3.6 + pathval: 1.1.1 + type-detect: 4.0.8 + dev: true + + /chalk@2.4.2: + resolution: + { integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== } + engines: { node: ">=4" } + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@4.1.2: + resolution: + { integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== } + engines: { node: ">=10" } + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chalk@5.2.0: + resolution: + { integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== } + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + dev: true + + /character-parser@2.2.0: + resolution: + { integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw== } + dependencies: + is-regex: 1.1.4 + dev: true + + /chardet@0.7.0: + resolution: + { integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== } + dev: true + + /check-error@1.0.2: + resolution: + { integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== } + dev: true + + /check-more-types@2.24.0: + resolution: + { integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== } + engines: { node: ">= 0.8.0" } + dev: true + + /chokidar@3.5.3: + resolution: + { integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== } + engines: { node: ">= 8.10.0" } + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /chrome-trace-event@1.0.3: + resolution: + { integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== } + engines: { node: ">=6.0" } + dev: true + + /ci-info@3.8.0: + resolution: + { integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== } + engines: { node: ">=8" } + dev: true + + /clean-css@4.2.4: + resolution: + { integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== } + engines: { node: ">= 4.0" } + dependencies: + source-map: 0.6.1 + dev: true + + /clean-stack@2.2.0: + resolution: + { integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== } + engines: { node: ">=6" } + dev: true + + /clean-stack@4.2.0: + resolution: + { integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg== } + engines: { node: ">=12" } + dependencies: + escape-string-regexp: 5.0.0 + dev: true + + /cli-cursor@3.1.0: + resolution: + { integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== } + engines: { node: ">=8" } + dependencies: + restore-cursor: 3.1.0 + dev: true + + /cli-spinners@2.9.0: + resolution: + { integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== } + engines: { node: ">=6" } + dev: true + + /cli-table3@0.6.3: + resolution: + { integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== } + engines: { node: 10.* || >= 12.* } + dependencies: + string-width: 4.2.3 + optionalDependencies: + "@colors/colors": 1.5.0 + dev: true + + /cli-truncate@2.1.0: + resolution: + { integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== } + engines: { node: ">=8" } + dependencies: + slice-ansi: 3.0.0 + string-width: 4.2.3 + dev: true + + /cli-truncate@3.1.0: + resolution: + { integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + slice-ansi: 5.0.0 + string-width: 5.1.2 + dev: true + + /cli-width@3.0.0: + resolution: + { integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== } + engines: { node: ">= 10" } + dev: true + + /cliui@2.1.0: + resolution: + { integrity: sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA== } + dependencies: + center-align: 0.1.3 + right-align: 0.1.3 + wordwrap: 0.0.2 + dev: true + + /cliui@6.0.0: + resolution: + { integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + dev: true + + /cliui@7.0.4: + resolution: + { integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /cliui@8.0.1: + resolution: + { integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== } + engines: { node: ">=12" } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /clone@1.0.4: + resolution: + { integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== } + engines: { node: ">=0.8" } + dev: true + + /color-convert@1.9.3: + resolution: + { integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== } + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert@2.0.1: + resolution: + { integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== } + engines: { node: ">=7.0.0" } + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: + { integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== } + dev: true + + /color-name@1.1.4: + resolution: + { integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== } + dev: true + + /colorette@2.0.20: + resolution: + { integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== } + dev: true + + /combined-stream@1.0.8: + resolution: + { integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== } + engines: { node: ">= 0.8" } + dependencies: + delayed-stream: 1.0.0 + dev: true + + /commander@10.0.1: + resolution: + { integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== } + engines: { node: ">=14" } + dev: true + + /commander@2.20.3: + resolution: + { integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== } + dev: true + + /commander@6.2.1: + resolution: + { integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== } + engines: { node: ">= 6" } + dev: true + + /commitizen@4.3.0: + resolution: + { integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw== } + engines: { node: ">= 12" } + hasBin: true + dependencies: + cachedir: 2.3.0 + cz-conventional-changelog: 3.3.0 + dedent: 0.7.0 + detect-indent: 6.1.0 + find-node-modules: 2.1.3 + find-root: 1.1.0 + fs-extra: 9.1.0 + glob: 7.2.3 + inquirer: 8.2.5 + is-utf8: 0.2.1 + lodash: 4.17.21 + minimist: 1.2.7 + strip-bom: 4.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" + dev: true + + /common-tags@1.8.2: + resolution: + { integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== } + engines: { node: ">=4.0.0" } + dev: true + + /commondir@1.0.1: + resolution: + { integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== } + dev: true + + /compare-func@2.0.0: + resolution: + { integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== } + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + dev: true + + /concat-map@0.0.1: + resolution: + { integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== } + dev: true + + /config-chain@1.1.13: + resolution: + { integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== } + dependencies: + ini: 1.3.8 + proto-list: 1.2.4 + dev: true + + /constantinople@3.1.2: + resolution: + { integrity: sha512-yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw== } + dependencies: + "@types/babel-types": 7.0.11 + "@types/babylon": 6.16.6 + babel-types: 6.26.0 + babylon: 6.18.0 + dev: true + + /conventional-changelog-angular@5.0.13: + resolution: + { integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== } + engines: { node: ">=10" } + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-angular@6.0.0: + resolution: + { integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg== } + engines: { node: ">=14" } + dependencies: + compare-func: 2.0.0 + dev: true + + /conventional-changelog-conventionalcommits@5.0.0: + resolution: + { integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw== } + engines: { node: ">=10" } + dependencies: + compare-func: 2.0.0 + lodash: 4.17.21 + q: 1.5.1 + dev: true + + /conventional-changelog-writer@6.0.0: + resolution: + { integrity: sha512-8PyWTnn7zBIt9l4hj4UusFs1TyG+9Ulu1zlOAc72L7Sdv9Hsc8E86ot7htY3HXCVhXHB/NO0pVGvZpwsyJvFfw== } + engines: { node: ">=14" } + hasBin: true + dependencies: + conventional-commits-filter: 3.0.0 + dateformat: 3.0.3 + handlebars: 4.7.7 + json-stringify-safe: 5.0.1 + meow: 8.1.2 + semver: 6.3.0 + split: 1.0.1 + dev: true + + /conventional-commit-types@3.0.0: + resolution: + { integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg== } + dev: true + + /conventional-commits-filter@3.0.0: + resolution: + { integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q== } + engines: { node: ">=14" } + dependencies: + lodash.ismatch: 4.4.0 + modify-values: 1.0.1 + dev: true + + /conventional-commits-parser@3.2.4: + resolution: + { integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== } + engines: { node: ">=10" } + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /conventional-commits-parser@4.0.0: + resolution: + { integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg== } + engines: { node: ">=14" } + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + meow: 8.1.2 + split2: 3.2.2 + dev: true + + /convert-source-map@1.9.0: + resolution: + { integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== } + dev: true + + /core-js-compat@3.31.0: + resolution: + { integrity: sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw== } + dependencies: + browserslist: 4.21.9 + dev: true + + /core-js@2.6.12: + resolution: + { integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== } + deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. + requiresBuild: true + dev: true + + /core-util-is@1.0.2: + resolution: + { integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== } + dev: true + + /core-util-is@1.0.3: + resolution: + { integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== } + dev: true + + /cosmiconfig-typescript-loader@4.3.0(@types/node@20.3.3)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6): + resolution: + { integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q== } + engines: { node: ">=12", npm: ">=6" } + peerDependencies: + "@types/node": "*" + cosmiconfig: ">=7" + ts-node: ">=10" + typescript: ">=3" + dependencies: + "@types/node": 20.3.3 + cosmiconfig: 8.2.0 + ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.1.6) + typescript: 5.1.6 + dev: true + + /cosmiconfig@8.2.0: + resolution: + { integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ== } + engines: { node: ">=14" } + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + dev: true + + /create-require@1.1.1: + resolution: + { integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== } + dev: true + + /cross-spawn@7.0.3: + resolution: + { integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== } + engines: { node: ">= 8" } + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /crypto-random-string@4.0.0: + resolution: + { integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== } + engines: { node: ">=12" } + dependencies: + type-fest: 1.4.0 + dev: true + + /cssstyle@3.0.0: + resolution: + { integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== } + engines: { node: ">=14" } + dependencies: + rrweb-cssom: 0.6.0 + dev: true + + /csstype@2.6.21: + resolution: + { integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w== } + dev: true + + /cypress-vite@1.4.0(vite@4.3.9): + resolution: + { integrity: sha512-BHmOku8q6nRtDGPiBcE7zcAZs56/OsiX5SFoldHEMSQ+I6nnPUU2tcrRNeRsCArONQAvwTu2Da7R/rFGA/DSEg== } + peerDependencies: + vite: ^2.9.0 || ^3.0.0 || ^4.0.0 + dependencies: + chokidar: 3.5.3 + debug: 4.3.4(supports-color@8.1.1) + vite: 4.3.9(@types/node@20.3.3) + transitivePeerDependencies: + - supports-color + dev: true + + /cypress@12.16.0: + resolution: + { integrity: sha512-mwv1YNe48hm0LVaPgofEhGCtLwNIQEjmj2dJXnAkY1b4n/NE9OtgPph4TyS+tOtYp5CKtRmDvBzWseUXQTjbTg== } + engines: { node: ^14.0.0 || ^16.0.0 || >=18.0.0 } + hasBin: true + requiresBuild: true + dependencies: + "@cypress/request": 2.88.11 + "@cypress/xvfb": 1.2.4(supports-color@8.1.1) + "@types/node": 14.18.53 + "@types/sinonjs__fake-timers": 8.1.1 + "@types/sizzle": 2.3.3 + arch: 2.2.0 + blob-util: 2.0.2 + bluebird: 3.7.2 + buffer: 5.7.1 + cachedir: 2.3.0 + chalk: 4.1.2 + check-more-types: 2.24.0 + cli-cursor: 3.1.0 + cli-table3: 0.6.3 + commander: 6.2.1 + common-tags: 1.8.2 + dayjs: 1.11.9 + debug: 4.3.4(supports-color@8.1.1) + enquirer: 2.3.6 + eventemitter2: 6.4.7 + execa: 4.1.0 + executable: 4.1.1 + extract-zip: 2.0.1(supports-color@8.1.1) + figures: 3.2.0 + fs-extra: 9.1.0 + getos: 3.2.1 + is-ci: 3.0.1 + is-installed-globally: 0.4.0 + lazy-ass: 1.6.0 + listr2: 3.14.0(enquirer@2.3.6) + lodash: 4.17.21 + log-symbols: 4.1.0 + minimist: 1.2.8 + ospath: 1.2.2 + pretty-bytes: 5.6.0 + proxy-from-env: 1.0.0 + request-progress: 3.0.0 + semver: 7.5.2 + supports-color: 8.1.1 + tmp: 0.2.1 + untildify: 4.0.0 + yauzl: 2.10.0 + dev: true + + /cz-conventional-changelog@3.3.0: + resolution: + { integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw== } + engines: { node: ">= 10" } + dependencies: + chalk: 2.4.2 + commitizen: 4.3.0 + conventional-commit-types: 3.0.0 + lodash.map: 4.6.0 + longest: 2.0.1 + word-wrap: 1.2.3 + optionalDependencies: + "@commitlint/load": 17.5.0 + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" + dev: true + + /dargs@7.0.0: + resolution: + { integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== } + engines: { node: ">=8" } + dev: true + + /dashdash@1.14.1: + resolution: + { integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== } + engines: { node: ">=0.10" } + dependencies: + assert-plus: 1.0.0 + dev: true + + /data-urls@4.0.0: + resolution: + { integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== } + engines: { node: ">=14" } + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + dev: true + + /dateformat@3.0.3: + resolution: + { integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== } + dev: true + + /dayjs@1.11.8: + resolution: + { integrity: sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ== } + dev: true + + /dayjs@1.11.9: + resolution: + { integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA== } + dev: true + + /de-indent@1.0.2: + resolution: + { integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== } + dev: true + + /debug@3.2.7(supports-color@8.1.1): + resolution: + { integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + supports-color: 8.1.1 + dev: true + + /debug@4.3.4(supports-color@8.1.1): + resolution: + { integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== } + engines: { node: ">=6.0" } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + supports-color: 8.1.1 + dev: true + + /decamelize-keys@1.1.1: + resolution: + { integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== } + engines: { node: ">=0.10.0" } + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize@1.2.0: + resolution: + { integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== } + engines: { node: ">=0.10.0" } + dev: true + + /decimal.js@10.4.3: + resolution: + { integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== } + dev: true + + /dedent@0.7.0: + resolution: + { integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== } + dev: true + + /deep-eql@4.1.3: + resolution: + { integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== } + engines: { node: ">=6" } + dependencies: + type-detect: 4.0.8 + dev: true + + /deep-extend@0.6.0: + resolution: + { integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== } + engines: { node: ">=4.0.0" } + dev: true + + /deep-is@0.1.4: + resolution: + { integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== } + dev: true + + /deepmerge@4.3.1: + resolution: + { integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== } + engines: { node: ">=0.10.0" } + dev: true + + /default-require-extensions@3.0.1: + resolution: + { integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw== } + engines: { node: ">=8" } + dependencies: + strip-bom: 4.0.0 + dev: true + + /defaults@1.0.4: + resolution: + { integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== } + dependencies: + clone: 1.0.4 + dev: true + + /define-properties@1.2.0: + resolution: + { integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== } + engines: { node: ">= 0.4" } + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /delayed-stream@1.0.0: + resolution: + { integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== } + engines: { node: ">=0.4.0" } + dev: true + + /deprecation@2.3.1: + resolution: + { integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== } + dev: true + + /detect-file@1.0.0: + resolution: + { integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== } + engines: { node: ">=0.10.0" } + dev: true + + /detect-indent@6.1.0: + resolution: + { integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== } + engines: { node: ">=8" } + dev: true + + /diff-match-patch@1.0.5: + resolution: + { integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw== } + dev: true + + /diff-sequences@29.4.3: + resolution: + { integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dev: true + + /diff@4.0.2: + resolution: + { integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== } + engines: { node: ">=0.3.1" } + dev: true + + /dir-glob@3.0.1: + resolution: + { integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== } + engines: { node: ">=8" } + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine@2.1.0: + resolution: + { integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== } + engines: { node: ">=0.10.0" } + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: + resolution: + { integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== } + engines: { node: ">=6.0.0" } + dependencies: + esutils: 2.0.3 + dev: true + + /doctypes@1.1.0: + resolution: + { integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ== } + dev: true + + /domexception@4.0.0: + resolution: + { integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== } + engines: { node: ">=12" } + dependencies: + webidl-conversions: 7.0.0 + dev: true + + /dot-prop@5.3.0: + resolution: + { integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== } + engines: { node: ">=8" } + dependencies: + is-obj: 2.0.0 + dev: true + + /dotenv@16.3.1: + resolution: + { integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== } + engines: { node: ">=12" } + dev: true + + /duplexer2@0.1.4: + resolution: + { integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== } + dependencies: + readable-stream: 2.3.8 + dev: true + + /eastasianwidth@0.2.0: + resolution: + { integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== } + dev: true + + /ecc-jsbn@0.1.2: + resolution: + { integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== } + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + dev: true + + /ecdsa-sig-formatter@1.0.11: + resolution: + { integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== } + dependencies: + safe-buffer: 5.2.1 + dev: true + + /electron-to-chromium@1.4.435: + resolution: + { integrity: sha512-B0CBWVFhvoQCW/XtjRzgrmqcgVWg6RXOEM/dK59+wFV93BFGR6AeNKc4OyhM+T3IhJaOOG8o/V+33Y2mwJWtzw== } + dev: true + + /emoji-regex@8.0.0: + resolution: + { integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== } + dev: true + + /emoji-regex@9.2.2: + resolution: + { integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== } + dev: true + + /end-of-stream@1.4.4: + resolution: + { integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== } + dependencies: + once: 1.4.0 + dev: true + + /enhanced-resolve@5.15.0: + resolution: + { integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== } + engines: { node: ">=10.13.0" } + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + dev: true + + /enquirer@2.3.6: + resolution: + { integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== } + engines: { node: ">=8.6" } + dependencies: + ansi-colors: 4.1.3 + dev: true + + /entities@2.1.0: + resolution: + { integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== } + dev: true + + /entities@4.5.0: + resolution: + { integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== } + engines: { node: ">=0.12" } + dev: true + + /env-ci@9.1.0: + resolution: + { integrity: sha512-ZCEas2sDVFR3gpumwwzSU4OJZwWJ46yqJH3TqH3vSxEBzeAlC0uCJLGAnZC0vX1TIXzHzjcwpKmUn2xw5mC/qA== } + engines: { node: ^16.14 || >=18 } + dependencies: + execa: 7.1.1 + java-properties: 1.0.2 + dev: true + + /error-ex@1.3.2: + resolution: + { integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== } + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract@1.21.2: + resolution: + { integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== } + engines: { node: ">= 0.4" } + dependencies: + array-buffer-byte-length: 1.0.0 + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-set-tostringtag: 2.0.1 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.2.1 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.5 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.10 + is-weakref: 1.0.2 + object-inspect: 1.12.3 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.5.0 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.7 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.9 + dev: true + + /es-module-lexer@1.3.0: + resolution: + { integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== } + dev: true + + /es-set-tostringtag@2.0.1: + resolution: + { integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== } + engines: { node: ">= 0.4" } + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + has-tostringtag: 1.0.0 + dev: true + + /es-shim-unscopables@1.0.0: + resolution: + { integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== } + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive@1.2.1: + resolution: + { integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== } + engines: { node: ">= 0.4" } + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /es6-error@4.1.1: + resolution: + { integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== } + dev: true + + /esbuild-android-64@0.14.54: + resolution: + { integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ== } + engines: { node: ">=12" } + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-android-arm64@0.14.54: + resolution: + { integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg== } + engines: { node: ">=12" } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-64@0.14.54: + resolution: + { integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug== } + engines: { node: ">=12" } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-arm64@0.14.54: + resolution: + { integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw== } + engines: { node: ">=12" } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-64@0.14.54: + resolution: + { integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg== } + engines: { node: ">=12" } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-arm64@0.14.54: + resolution: + { integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q== } + engines: { node: ">=12" } + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-32@0.14.54: + resolution: + { integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw== } + engines: { node: ">=12" } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-64@0.14.54: + resolution: + { integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg== } + engines: { node: ">=12" } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm64@0.14.54: + resolution: + { integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig== } + engines: { node: ">=12" } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm@0.14.54: + resolution: + { integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw== } + engines: { node: ">=12" } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-mips64le@0.14.54: + resolution: + { integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw== } + engines: { node: ">=12" } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-ppc64le@0.14.54: + resolution: + { integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ== } + engines: { node: ">=12" } + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-riscv64@0.14.54: + resolution: + { integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg== } + engines: { node: ">=12" } + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-s390x@0.14.54: + resolution: + { integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA== } + engines: { node: ">=12" } + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-netbsd-64@0.14.54: + resolution: + { integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w== } + engines: { node: ">=12" } + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-openbsd-64@0.14.54: + resolution: + { integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw== } + engines: { node: ">=12" } + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-sunos-64@0.14.54: + resolution: + { integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw== } + engines: { node: ">=12" } + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-32@0.14.54: + resolution: + { integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w== } + engines: { node: ">=12" } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-64@0.14.54: + resolution: + { integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ== } + engines: { node: ">=12" } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-arm64@0.14.54: + resolution: + { integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg== } + engines: { node: ">=12" } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild@0.14.54: + resolution: + { integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA== } + engines: { node: ">=12" } + hasBin: true + requiresBuild: true + optionalDependencies: + "@esbuild/linux-loong64": 0.14.54 + esbuild-android-64: 0.14.54 + esbuild-android-arm64: 0.14.54 + esbuild-darwin-64: 0.14.54 + esbuild-darwin-arm64: 0.14.54 + esbuild-freebsd-64: 0.14.54 + esbuild-freebsd-arm64: 0.14.54 + esbuild-linux-32: 0.14.54 + esbuild-linux-64: 0.14.54 + esbuild-linux-arm: 0.14.54 + esbuild-linux-arm64: 0.14.54 + esbuild-linux-mips64le: 0.14.54 + esbuild-linux-ppc64le: 0.14.54 + esbuild-linux-riscv64: 0.14.54 + esbuild-linux-s390x: 0.14.54 + esbuild-netbsd-64: 0.14.54 + esbuild-openbsd-64: 0.14.54 + esbuild-sunos-64: 0.14.54 + esbuild-windows-32: 0.14.54 + esbuild-windows-64: 0.14.54 + esbuild-windows-arm64: 0.14.54 + dev: true + + /esbuild@0.17.19: + resolution: + { integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw== } + engines: { node: ">=12" } + hasBin: true + requiresBuild: true + optionalDependencies: + "@esbuild/android-arm": 0.17.19 + "@esbuild/android-arm64": 0.17.19 + "@esbuild/android-x64": 0.17.19 + "@esbuild/darwin-arm64": 0.17.19 + "@esbuild/darwin-x64": 0.17.19 + "@esbuild/freebsd-arm64": 0.17.19 + "@esbuild/freebsd-x64": 0.17.19 + "@esbuild/linux-arm": 0.17.19 + "@esbuild/linux-arm64": 0.17.19 + "@esbuild/linux-ia32": 0.17.19 + "@esbuild/linux-loong64": 0.17.19 + "@esbuild/linux-mips64el": 0.17.19 + "@esbuild/linux-ppc64": 0.17.19 + "@esbuild/linux-riscv64": 0.17.19 + "@esbuild/linux-s390x": 0.17.19 + "@esbuild/linux-x64": 0.17.19 + "@esbuild/netbsd-x64": 0.17.19 + "@esbuild/openbsd-x64": 0.17.19 + "@esbuild/sunos-x64": 0.17.19 + "@esbuild/win32-arm64": 0.17.19 + "@esbuild/win32-ia32": 0.17.19 + "@esbuild/win32-x64": 0.17.19 + dev: true + + /escalade@3.1.1: + resolution: + { integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== } + engines: { node: ">=6" } + dev: true + + /escape-string-regexp@1.0.5: + resolution: + { integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== } + engines: { node: ">=0.8.0" } + dev: true + + /escape-string-regexp@2.0.0: + resolution: + { integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== } + engines: { node: ">=8" } + dev: true + + /escape-string-regexp@4.0.0: + resolution: + { integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== } + engines: { node: ">=10" } + dev: true + + /escape-string-regexp@5.0.0: + resolution: + { integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== } + engines: { node: ">=12" } + dev: true + + /eslint-config-prettier@8.8.0(eslint@8.44.0): + resolution: + { integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA== } + hasBin: true + peerDependencies: + eslint: ">=7.0.0" + dependencies: + eslint: 8.44.0 + dev: true + + /eslint-import-resolver-node@0.3.7: + resolution: + { integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== } + dependencies: + debug: 3.2.7(supports-color@8.1.1) + is-core-module: 2.12.1 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0): + resolution: + { integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== } + engines: { node: ">=4" } + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: "*" + eslint-import-resolver-node: "*" + eslint-import-resolver-typescript: "*" + eslint-import-resolver-webpack: "*" + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + "@typescript-eslint/parser": 5.61.0(eslint@8.44.0)(typescript@5.1.6) + debug: 3.2.7(supports-color@8.1.1) + eslint: 8.44.0 + eslint-import-resolver-node: 0.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-cypress@2.13.3(eslint@8.44.0): + resolution: + { integrity: sha512-nAPjZE5WopCsgJwl3vHm5iafpV+ZRO76Z9hMyRygWhmg5ODXDPd+9MaPl7kdJ2azj+sO87H3P1PRnggIrz848g== } + peerDependencies: + eslint: ">= 3.2.1" + dependencies: + eslint: 8.44.0 + globals: 11.12.0 + dev: true + + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.61.0)(eslint@8.44.0): + resolution: + { integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== } + engines: { node: ">=4" } + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + dependencies: + "@typescript-eslint/parser": 5.61.0(eslint@8.44.0)(typescript@5.1.6) + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + array.prototype.flatmap: 1.3.1 + debug: 3.2.7(supports-color@8.1.1) + doctrine: 2.1.0 + eslint: 8.44.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0) + has: 1.0.3 + is-core-module: 2.12.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.2 + semver: 6.3.0 + tsconfig-paths: 3.14.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@8.44.0)(prettier@2.8.8): + resolution: + { integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== } + engines: { node: ">=12.0.0" } + peerDependencies: + eslint: ">=7.28.0" + eslint-config-prettier: "*" + prettier: ">=2.0.0" + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.44.0 + eslint-config-prettier: 8.8.0(eslint@8.44.0) + prettier: 2.8.8 + prettier-linter-helpers: 1.0.0 + dev: true + + /eslint-scope@5.1.1: + resolution: + { integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== } + engines: { node: ">=8.0.0" } + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope@7.2.0: + resolution: + { integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-visitor-keys@3.4.1: + resolution: + { integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /eslint@8.44.0: + resolution: + { integrity: sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + "@eslint-community/eslint-utils": 4.4.0(eslint@8.44.0) + "@eslint-community/regexpp": 4.5.1 + "@eslint/eslintrc": 2.1.0 + "@eslint/js": 8.44.0 + "@humanwhocodes/config-array": 0.11.10 + "@humanwhocodes/module-importer": 1.0.1 + "@nodelib/fs.walk": 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.0 + eslint-visitor-keys: 3.4.1 + espree: 9.6.0 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.20.0 + graphemer: 1.4.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.6.0: + resolution: + { integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A== } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + acorn: 8.9.0 + acorn-jsx: 5.3.2(acorn@8.9.0) + eslint-visitor-keys: 3.4.1 + dev: true + + /esprima@4.0.1: + resolution: + { integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== } + engines: { node: ">=4" } + hasBin: true + dev: true + + /esquery@1.5.0: + resolution: + { integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== } + engines: { node: ">=0.10" } + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: + { integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== } + engines: { node: ">=4.0" } + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: + { integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== } + engines: { node: ">=4.0" } + dev: true + + /estraverse@5.3.0: + resolution: + { integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== } + engines: { node: ">=4.0" } + dev: true + + /estree-to-babel@3.2.1: + resolution: + { integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg== } + engines: { node: ">=8.3.0" } + dependencies: + "@babel/traverse": 7.22.5 + "@babel/types": 7.22.5 + c8: 7.14.0 + transitivePeerDependencies: + - supports-color + dev: true + + /estree-walker@2.0.2: + resolution: + { integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== } + dev: true + + /esutils@2.0.3: + resolution: + { integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== } + engines: { node: ">=0.10.0" } + dev: true + + /eventemitter2@6.4.7: + resolution: + { integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== } + dev: true + + /events@3.3.0: + resolution: + { integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== } + engines: { node: ">=0.8.x" } + dev: true + + /execa@4.1.0: + resolution: + { integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== } + engines: { node: ">=10" } + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /execa@5.1.1: + resolution: + { integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== } + engines: { node: ">=10" } + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /execa@7.1.1: + resolution: + { integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q== } + engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 } + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 4.3.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.1.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + + /executable@4.1.1: + resolution: + { integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== } + engines: { node: ">=4" } + dependencies: + pify: 2.3.0 + dev: true + + /expand-tilde@2.0.2: + resolution: + { integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== } + engines: { node: ">=0.10.0" } + dependencies: + homedir-polyfill: 1.0.3 + dev: true + + /extend@3.0.2: + resolution: + { integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== } + dev: true + + /external-editor@3.1.0: + resolution: + { integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== } + engines: { node: ">=4" } + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + dev: true + + /extract-zip@2.0.1(supports-color@8.1.1): + resolution: + { integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== } + engines: { node: ">= 10.17.0" } + hasBin: true + dependencies: + debug: 4.3.4(supports-color@8.1.1) + get-stream: 5.2.0 + yauzl: 2.10.0 + optionalDependencies: + "@types/yauzl": 2.10.0 + transitivePeerDependencies: + - supports-color + dev: true + + /extsprintf@1.3.0: + resolution: + { integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== } + engines: { "0": node >=0.6.0 } + dev: true + + /fast-deep-equal@3.1.3: + resolution: + { integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== } + dev: true + + /fast-diff@1.3.0: + resolution: + { integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== } + dev: true + + /fast-glob@3.2.12: + resolution: + { integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== } + engines: { node: ">=8.6.0" } + dependencies: + "@nodelib/fs.stat": 2.0.5 + "@nodelib/fs.walk": 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: + { integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== } + dev: true + + /fast-levenshtein@2.0.6: + resolution: + { integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== } + dev: true + + /fastq@1.15.0: + resolution: + { integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== } + dependencies: + reusify: 1.0.4 + dev: true + + /fd-slicer@1.1.0: + resolution: + { integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== } + dependencies: + pend: 1.2.0 + dev: true + + /figures@2.0.0: + resolution: + { integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== } + engines: { node: ">=4" } + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /figures@3.2.0: + resolution: + { integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== } + engines: { node: ">=8" } + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /figures@5.0.0: + resolution: + { integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg== } + engines: { node: ">=14" } + dependencies: + escape-string-regexp: 5.0.0 + is-unicode-supported: 1.3.0 + dev: true + + /file-entry-cache@6.0.1: + resolution: + { integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range@7.0.1: + resolution: + { integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== } + engines: { node: ">=8" } + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-cache-dir@3.3.2: + resolution: + { integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== } + engines: { node: ">=8" } + dependencies: + commondir: 1.0.1 + make-dir: 3.1.0 + pkg-dir: 4.2.0 + dev: true + + /find-node-modules@2.1.3: + resolution: + { integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg== } + dependencies: + findup-sync: 4.0.0 + merge: 2.1.1 + dev: true + + /find-root@1.1.0: + resolution: + { integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== } + dev: true + + /find-up@2.1.0: + resolution: + { integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== } + engines: { node: ">=4" } + dependencies: + locate-path: 2.0.0 + dev: true + + /find-up@4.1.0: + resolution: + { integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== } + engines: { node: ">=8" } + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: + { integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== } + engines: { node: ">=10" } + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@6.3.0: + resolution: + { integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + locate-path: 7.2.0 + path-exists: 5.0.0 + dev: true + + /find-versions@5.1.0: + resolution: + { integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg== } + engines: { node: ">=12" } + dependencies: + semver-regex: 4.0.5 + dev: true + + /findup-sync@4.0.0: + resolution: + { integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ== } + engines: { node: ">= 8" } + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 4.0.5 + resolve-dir: 1.0.1 + dev: true + + /flat-cache@3.0.4: + resolution: + { integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flatted: 3.2.7 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.7: + resolution: + { integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== } + dev: true + + /for-each@0.3.3: + resolution: + { integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== } + dependencies: + is-callable: 1.2.7 + dev: true + + /foreground-child@2.0.0: + resolution: + { integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== } + engines: { node: ">=8.0.0" } + dependencies: + cross-spawn: 7.0.3 + signal-exit: 3.0.7 + dev: true + + /foreground-child@3.1.1: + resolution: + { integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== } + engines: { node: ">=14" } + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.0.2 + dev: true + + /forever-agent@0.6.1: + resolution: + { integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== } + dev: true + + /form-data@2.3.3: + resolution: + { integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== } + engines: { node: ">= 0.12" } + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /form-data@4.0.0: + resolution: + { integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== } + engines: { node: ">= 6" } + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /from2@2.3.0: + resolution: + { integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== } + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.8 + dev: true + + /fromentries@1.3.2: + resolution: + { integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== } + dev: true + + /fs-extra@11.1.1: + resolution: + { integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== } + engines: { node: ">=14.14" } + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs-extra@9.1.0: + resolution: + { integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== } + engines: { node: ">=10" } + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs.realpath@1.0.0: + resolution: + { integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== } + dev: true + + /fsevents@2.3.2: + resolution: + { integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind@1.1.1: + resolution: + { integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== } + dev: true + + /function.prototype.name@1.1.5: + resolution: + { integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + functions-have-names: 1.2.3 + dev: true + + /functions-have-names@1.2.3: + resolution: + { integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== } + dev: true + + /gensync@1.0.0-beta.2: + resolution: + { integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== } + engines: { node: ">=6.9.0" } + dev: true + + /get-caller-file@2.0.5: + resolution: + { integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== } + engines: { node: 6.* || 8.* || >= 10.* } + dev: true + + /get-func-name@2.0.0: + resolution: + { integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== } + dev: true + + /get-intrinsic@1.2.1: + resolution: + { integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== } + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-proto: 1.0.1 + has-symbols: 1.0.3 + dev: true + + /get-package-type@0.1.0: + resolution: + { integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== } + engines: { node: ">=8.0.0" } + dev: true + + /get-stream@5.2.0: + resolution: + { integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== } + engines: { node: ">=8" } + dependencies: + pump: 3.0.0 + dev: true + + /get-stream@6.0.1: + resolution: + { integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== } + engines: { node: ">=10" } + dev: true + + /get-stream@7.0.0: + resolution: + { integrity: sha512-ql6FW5b8tgMYvI4UaoxG3EQN3VyZ6VeQpxNBGg5BZ4xD4u+HJeprzhMMA4OCBEGQgSR+m87pstWMpiVW64W8Fw== } + engines: { node: ">=16" } + dev: true + + /get-symbol-description@1.0.0: + resolution: + { integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + dev: true + + /getos@3.2.1: + resolution: + { integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q== } + dependencies: + async: 3.2.4 + dev: true + + /getpass@0.1.7: + resolution: + { integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== } + dependencies: + assert-plus: 1.0.0 + dev: true + + /git-cz@4.9.0: + resolution: + { integrity: sha512-cSRL8IIOXU7UFLdbziCYqg8f8InwLwqHezkiRHNSph7oZqGv0togId1kMTfKil6gzK0VaSXeVBb4oDl0fQCHiw== } + hasBin: true + dev: true + + /git-log-parser@1.2.0: + resolution: + { integrity: sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA== } + dependencies: + argv-formatter: 1.0.0 + spawn-error-forwarder: 1.0.0 + split2: 1.0.0 + stream-combiner2: 1.1.1 + through2: 2.0.5 + traverse: 0.6.7 + dev: true + + /git-raw-commits@2.0.11: + resolution: + { integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== } + engines: { node: ">=10" } + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /glob-parent@5.1.2: + resolution: + { integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== } + engines: { node: ">= 6" } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent@6.0.2: + resolution: + { integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== } + engines: { node: ">=10.13.0" } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-to-regexp@0.4.1: + resolution: + { integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== } + dev: true + + /glob@10.2.7: + resolution: + { integrity: sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA== } + engines: { node: ">=16 || 14 >=14.17" } + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.2.1 + minimatch: 9.0.1 + minipass: 6.0.2 + path-scurry: 1.9.2 + dev: true + + /glob@7.2.3: + resolution: + { integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob@8.1.0: + resolution: + { integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== } + engines: { node: ">=12" } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + dev: true + + /global-dirs@0.1.1: + resolution: + { integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg== } + engines: { node: ">=4" } + dependencies: + ini: 1.3.8 + dev: true + + /global-dirs@3.0.1: + resolution: + { integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== } + engines: { node: ">=10" } + dependencies: + ini: 2.0.0 + dev: true + + /global-modules@1.0.0: + resolution: + { integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== } + engines: { node: ">=0.10.0" } + dependencies: + global-prefix: 1.0.2 + is-windows: 1.0.2 + resolve-dir: 1.0.1 + dev: true + + /global-prefix@1.0.2: + resolution: + { integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg== } + engines: { node: ">=0.10.0" } + dependencies: + expand-tilde: 2.0.2 + homedir-polyfill: 1.0.3 + ini: 1.3.8 + is-windows: 1.0.2 + which: 1.3.1 + dev: true + + /globals@11.12.0: + resolution: + { integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== } + engines: { node: ">=4" } + dev: true + + /globals@13.20.0: + resolution: + { integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== } + engines: { node: ">=8" } + dependencies: + type-fest: 0.20.2 + dev: true + + /globalthis@1.0.3: + resolution: + { integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== } + engines: { node: ">= 0.4" } + dependencies: + define-properties: 1.2.0 + dev: true + + /globby@11.0.4: + resolution: + { integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== } + engines: { node: ">=10" } + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /globby@11.1.0: + resolution: + { integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== } + engines: { node: ">=10" } + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /globby@13.2.0: + resolution: + { integrity: sha512-jWsQfayf13NvqKUIL3Ta+CIqMnvlaIDFveWE/dpOZ9+3AMEJozsxDvKA02zync9UuvOM8rOXzsD5GqKP4OnWPQ== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 4.0.0 + dev: true + + /gopd@1.0.1: + resolution: + { integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== } + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /graceful-fs@4.2.10: + resolution: + { integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== } + dev: true + + /graceful-fs@4.2.11: + resolution: + { integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== } + dev: true + + /graphemer@1.4.0: + resolution: + { integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== } + dev: true + + /handlebars@4.7.7: + resolution: + { integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== } + engines: { node: ">=0.4.7" } + hasBin: true + dependencies: + minimist: 1.2.8 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.17.4 + dev: true + + /hard-rejection@2.1.0: + resolution: + { integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== } + engines: { node: ">=6" } + dev: true + + /has-bigints@1.0.2: + resolution: + { integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== } + dev: true + + /has-flag@3.0.0: + resolution: + { integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== } + engines: { node: ">=4" } + dev: true + + /has-flag@4.0.0: + resolution: + { integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== } + engines: { node: ">=8" } + dev: true + + /has-property-descriptors@1.0.0: + resolution: + { integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== } + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /has-proto@1.0.1: + resolution: + { integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== } + engines: { node: ">= 0.4" } + dev: true + + /has-symbols@1.0.3: + resolution: + { integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== } + engines: { node: ">= 0.4" } + dev: true + + /has-tostringtag@1.0.0: + resolution: + { integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== } + engines: { node: ">= 0.4" } + dependencies: + has-symbols: 1.0.3 + dev: true + + /has@1.0.3: + resolution: + { integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== } + engines: { node: ">= 0.4.0" } + dependencies: + function-bind: 1.1.1 + dev: true + + /hash-sum@1.0.2: + resolution: + { integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA== } + dev: true + + /hasha@5.2.2: + resolution: + { integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ== } + engines: { node: ">=8" } + dependencies: + is-stream: 2.0.1 + type-fest: 0.8.1 + dev: true + + /he@1.2.0: + resolution: + { integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== } + hasBin: true + dev: true + + /homedir-polyfill@1.0.3: + resolution: + { integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== } + engines: { node: ">=0.10.0" } + dependencies: + parse-passwd: 1.0.0 + dev: true + + /hook-std@3.0.0: + resolution: + { integrity: sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dev: true + + /hosted-git-info@2.8.9: + resolution: + { integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== } + dev: true + + /hosted-git-info@4.1.0: + resolution: + { integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== } + engines: { node: ">=10" } + dependencies: + lru-cache: 6.0.0 + dev: true + + /hosted-git-info@6.1.1: + resolution: + { integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w== } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + dependencies: + lru-cache: 7.18.3 + dev: true + + /html-encoding-sniffer@3.0.0: + resolution: + { integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== } + engines: { node: ">=12" } + dependencies: + whatwg-encoding: 2.0.0 + dev: true + + /html-escaper@2.0.2: + resolution: + { integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== } + dev: true + + /http-proxy-agent@5.0.0: + resolution: + { integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== } + engines: { node: ">= 6" } + dependencies: + "@tootallnate/once": 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /http-proxy-agent@7.0.0: + resolution: + { integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ== } + engines: { node: ">= 14" } + dependencies: + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /http-signature@1.3.6: + resolution: + { integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw== } + engines: { node: ">=0.10" } + dependencies: + assert-plus: 1.0.0 + jsprim: 2.0.2 + sshpk: 1.17.0 + dev: true + + /https-proxy-agent@5.0.1: + resolution: + { integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== } + engines: { node: ">= 6" } + dependencies: + agent-base: 6.0.2 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /https-proxy-agent@7.0.0: + resolution: + { integrity: sha512-0euwPCRyAPSgGdzD1IVN9nJYHtBhJwb6XPfbpQcYbPCwrBidX6GzxmchnaF4sfF/jPb74Ojx5g4yTg3sixlyPw== } + engines: { node: ">= 14" } + dependencies: + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /human-signals@1.1.1: + resolution: + { integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== } + engines: { node: ">=8.12.0" } + dev: true + + /human-signals@2.1.0: + resolution: + { integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== } + engines: { node: ">=10.17.0" } + dev: true + + /human-signals@4.3.1: + resolution: + { integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== } + engines: { node: ">=14.18.0" } + dev: true + + /husky@8.0.3: + resolution: + { integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg== } + engines: { node: ">=14" } + hasBin: true + dev: true + + /iconv-lite@0.4.24: + resolution: + { integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== } + engines: { node: ">=0.10.0" } + dependencies: + safer-buffer: 2.1.2 + dev: true + + /iconv-lite@0.6.3: + resolution: + { integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== } + engines: { node: ">=0.10.0" } + dependencies: + safer-buffer: 2.1.2 + dev: true + + /ieee754@1.2.1: + resolution: + { integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== } + dev: true + + /ignore@5.2.4: + resolution: + { integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== } + engines: { node: ">= 4" } + dev: true + + /import-fresh@3.3.0: + resolution: + { integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== } + engines: { node: ">=6" } + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-from@4.0.0: + resolution: + { integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ== } + engines: { node: ">=12.2" } + dev: true + + /imurmurhash@0.1.4: + resolution: + { integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== } + engines: { node: ">=0.8.19" } + dev: true + + /indent-string@4.0.0: + resolution: + { integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== } + engines: { node: ">=8" } + dev: true + + /indent-string@5.0.0: + resolution: + { integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== } + engines: { node: ">=12" } + dev: true + + /inflight@1.0.6: + resolution: + { integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== } + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: + { integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== } + dev: true + + /ini@1.3.8: + resolution: + { integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== } + dev: true + + /ini@2.0.0: + resolution: + { integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== } + engines: { node: ">=10" } + dev: true + + /inquirer@8.2.5: + resolution: + { integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== } + engines: { node: ">=12.0.0" } + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.8.1 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /internal-slot@1.0.5: + resolution: + { integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== } + engines: { node: ">= 0.4" } + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /into-stream@7.0.0: + resolution: + { integrity: sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw== } + engines: { node: ">=12" } + dependencies: + from2: 2.3.0 + p-is-promise: 3.0.0 + dev: true + + /is-array-buffer@3.0.2: + resolution: + { integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.10 + dev: true + + /is-arrayish@0.2.1: + resolution: + { integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== } + dev: true + + /is-bigint@1.0.4: + resolution: + { integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== } + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path@2.1.0: + resolution: + { integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== } + engines: { node: ">=8" } + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-boolean-object@1.1.2: + resolution: + { integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-buffer@1.1.6: + resolution: + { integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== } + dev: true + + /is-builtin-module@3.2.1: + resolution: + { integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== } + engines: { node: ">=6" } + dependencies: + builtin-modules: 3.3.0 + dev: true + + /is-callable@1.2.7: + resolution: + { integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== } + engines: { node: ">= 0.4" } + dev: true + + /is-ci@3.0.1: + resolution: + { integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== } + hasBin: true + dependencies: + ci-info: 3.8.0 + dev: true + + /is-core-module@2.12.1: + resolution: + { integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== } + dependencies: + has: 1.0.3 + dev: true + + /is-date-object@1.0.5: + resolution: + { integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== } + engines: { node: ">= 0.4" } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-expression@3.0.0: + resolution: + { integrity: sha512-vyMeQMq+AiH5uUnoBfMTwf18tO3bM6k1QXBE9D6ueAAquEfCZe3AJPtud9g6qS0+4X8xA7ndpZiDyeb2l2qOBw== } + dependencies: + acorn: 4.0.13 + object-assign: 4.1.1 + dev: true + + /is-extglob@2.1.1: + resolution: + { integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== } + engines: { node: ">=0.10.0" } + dev: true + + /is-fullwidth-code-point@3.0.0: + resolution: + { integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== } + engines: { node: ">=8" } + dev: true + + /is-fullwidth-code-point@4.0.0: + resolution: + { integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== } + engines: { node: ">=12" } + dev: true + + /is-glob@4.0.3: + resolution: + { integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== } + engines: { node: ">=0.10.0" } + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-installed-globally@0.4.0: + resolution: + { integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== } + engines: { node: ">=10" } + dependencies: + global-dirs: 3.0.1 + is-path-inside: 3.0.3 + dev: true + + /is-interactive@1.0.0: + resolution: + { integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== } + engines: { node: ">=8" } + dev: true + + /is-module@1.0.0: + resolution: + { integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== } + dev: true + + /is-negative-zero@2.0.2: + resolution: + { integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== } + engines: { node: ">= 0.4" } + dev: true + + /is-number-object@1.0.7: + resolution: + { integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== } + engines: { node: ">= 0.4" } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@7.0.0: + resolution: + { integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== } + engines: { node: ">=0.12.0" } + dev: true + + /is-obj@2.0.0: + resolution: + { integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== } + engines: { node: ">=8" } + dev: true + + /is-path-inside@3.0.3: + resolution: + { integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== } + engines: { node: ">=8" } + dev: true + + /is-plain-obj@1.1.0: + resolution: + { integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== } + engines: { node: ">=0.10.0" } + dev: true + + /is-plain-object@5.0.0: + resolution: + { integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== } + engines: { node: ">=0.10.0" } + dev: true + + /is-potential-custom-element-name@1.0.1: + resolution: + { integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== } + dev: true + + /is-promise@2.2.2: + resolution: + { integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== } + dev: true + + /is-reference@1.2.1: + resolution: + { integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== } + dependencies: + "@types/estree": 1.0.1 + dev: true + + /is-regex@1.1.4: + resolution: + { integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: + { integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== } + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream@2.0.1: + resolution: + { integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== } + engines: { node: ">=8" } + dev: true + + /is-stream@3.0.0: + resolution: + { integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dev: true + + /is-string@1.0.7: + resolution: + { integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== } + engines: { node: ">= 0.4" } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: + { integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== } + engines: { node: ">= 0.4" } + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-text-path@1.0.1: + resolution: + { integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== } + engines: { node: ">=0.10.0" } + dependencies: + text-extensions: 1.9.0 + dev: true + + /is-typed-array@1.1.10: + resolution: + { integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== } + engines: { node: ">= 0.4" } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /is-typedarray@1.0.0: + resolution: + { integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== } + dev: true + + /is-unicode-supported@0.1.0: + resolution: + { integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== } + engines: { node: ">=10" } + dev: true + + /is-unicode-supported@1.3.0: + resolution: + { integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ== } + engines: { node: ">=12" } + dev: true + + /is-utf8@0.2.1: + resolution: + { integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== } + dev: true + + /is-weakref@1.0.2: + resolution: + { integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== } + dependencies: + call-bind: 1.0.2 + dev: true + + /is-windows@1.0.2: + resolution: + { integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== } + engines: { node: ">=0.10.0" } + dev: true + + /isarray@1.0.0: + resolution: + { integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== } + dev: true + + /isexe@2.0.0: + resolution: + { integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== } + dev: true + + /isstream@0.1.2: + resolution: + { integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== } + dev: true + + /issue-parser@6.0.0: + resolution: + { integrity: sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA== } + engines: { node: ">=10.13" } + dependencies: + lodash.capitalize: 4.2.1 + lodash.escaperegexp: 4.1.2 + lodash.isplainobject: 4.0.6 + lodash.isstring: 4.0.1 + lodash.uniqby: 4.7.0 + dev: true + + /istanbul-lib-coverage@3.0.0: + resolution: + { integrity: sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== } + engines: { node: ">=8" } + dev: true + + /istanbul-lib-coverage@3.2.0: + resolution: + { integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== } + engines: { node: ">=8" } + dev: true + + /istanbul-lib-hook@3.0.0: + resolution: + { integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ== } + engines: { node: ">=8" } + dependencies: + append-transform: 2.0.0 + dev: true + + /istanbul-lib-instrument@4.0.3: + resolution: + { integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== } + engines: { node: ">=8" } + dependencies: + "@babel/core": 7.22.5 + "@istanbuljs/schema": 0.1.3 + istanbul-lib-coverage: 3.2.0 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-instrument@5.2.1: + resolution: + { integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== } + engines: { node: ">=8" } + dependencies: + "@babel/core": 7.22.5 + "@babel/parser": 7.22.5 + "@istanbuljs/schema": 0.1.3 + istanbul-lib-coverage: 3.2.0 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-processinfo@2.0.3: + resolution: + { integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg== } + engines: { node: ">=8" } + dependencies: + archy: 1.0.0 + cross-spawn: 7.0.3 + istanbul-lib-coverage: 3.2.0 + p-map: 3.0.0 + rimraf: 3.0.2 + uuid: 8.3.2 + dev: true + + /istanbul-lib-report@3.0.0: + resolution: + { integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== } + engines: { node: ">=8" } + dependencies: + istanbul-lib-coverage: 3.2.0 + make-dir: 3.1.0 + supports-color: 7.2.0 + dev: true + + /istanbul-lib-source-maps@4.0.1: + resolution: + { integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== } + engines: { node: ">=10" } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + istanbul-lib-coverage: 3.2.0 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-reports@3.1.5: + resolution: + { integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== } + engines: { node: ">=8" } + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.0 + dev: true + + /jackspeak@2.2.1: + resolution: + { integrity: sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw== } + engines: { node: ">=14" } + dependencies: + "@isaacs/cliui": 8.0.2 + optionalDependencies: + "@pkgjs/parseargs": 0.11.0 + dev: true + + /java-properties@1.0.2: + resolution: + { integrity: sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ== } + engines: { node: ">= 0.6.0" } + dev: true + + /jest-worker@27.5.1: + resolution: + { integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== } + engines: { node: ">= 10.13.0" } + dependencies: + "@types/node": 20.3.3 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /js-cookie@3.0.5: + resolution: + { integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw== } + engines: { node: ">=14" } + dev: true + + /js-stringify@1.0.2: + resolution: + { integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g== } + dev: true + + /js-tokens@4.0.0: + resolution: + { integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== } + + /js-yaml@3.14.1: + resolution: + { integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== } + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: true + + /js-yaml@4.1.0: + resolution: + { integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== } + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /js2xmlparser@4.0.2: + resolution: + { integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA== } + dependencies: + xmlcreate: 2.0.4 + dev: true + + /jsbn@0.1.1: + resolution: + { integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== } + dev: true + + /jsdoc@4.0.2: + resolution: + { integrity: sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg== } + engines: { node: ">=12.0.0" } + hasBin: true + dependencies: + "@babel/parser": 7.22.5 + "@jsdoc/salty": 0.2.5 + "@types/markdown-it": 12.2.3 + bluebird: 3.7.2 + catharsis: 0.9.0 + escape-string-regexp: 2.0.0 + js2xmlparser: 4.0.2 + klaw: 3.0.0 + markdown-it: 12.3.2 + markdown-it-anchor: 8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2) + marked: 4.3.0 + mkdirp: 1.0.4 + requizzle: 0.2.4 + strip-json-comments: 3.1.1 + underscore: 1.13.6 + dev: true + + /jsdom@22.1.0: + resolution: + { integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== } + engines: { node: ">=16" } + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + abab: 2.0.6 + cssstyle: 3.0.0 + data-urls: 4.0.0 + decimal.js: 10.4.3 + domexception: 4.0.0 + form-data: 4.0.0 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.6 + parse5: 7.1.2 + rrweb-cssom: 0.6.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.3 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + ws: 8.13.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + + /jsesc@0.5.0: + resolution: + { integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== } + hasBin: true + dev: true + + /jsesc@2.5.2: + resolution: + { integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== } + engines: { node: ">=4" } + hasBin: true + dev: true + + /json-parse-better-errors@1.0.2: + resolution: + { integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== } + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: + { integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== } + dev: true + + /json-parse-even-better-errors@3.0.0: + resolution: + { integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA== } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + dev: true + + /json-schema-traverse@0.4.1: + resolution: + { integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== } + dev: true + + /json-schema-traverse@1.0.0: + resolution: + { integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== } + dev: true + + /json-schema@0.4.0: + resolution: + { integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== } + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: + { integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== } + dev: true + + /json-stringify-safe@5.0.1: + resolution: + { integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== } + dev: true + + /json5@1.0.2: + resolution: + { integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== } + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + + /json5@2.2.3: + resolution: + { integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== } + engines: { node: ">=6" } + hasBin: true + dev: true + + /jsonc-parser@3.2.0: + resolution: + { integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== } + dev: true + + /jsonfile@6.1.0: + resolution: + { integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== } + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: 4.2.11 + dev: true + + /jsonparse@1.3.1: + resolution: + { integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== } + engines: { "0": node >= 0.2.0 } + dev: true + + /jsonwebtoken@9.0.0: + resolution: + { integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw== } + engines: { node: ">=12", npm: ">=6" } + dependencies: + jws: 3.2.2 + lodash: 4.17.21 + ms: 2.1.3 + semver: 7.5.2 + dev: true + + /jsprim@2.0.2: + resolution: + { integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ== } + engines: { "0": node >=0.6.0 } + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + dev: true + + /jstransformer@1.0.0: + resolution: + { integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A== } + dependencies: + is-promise: 2.2.2 + promise: 7.3.1 + dev: true + + /jwa@1.4.1: + resolution: + { integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== } + dependencies: + buffer-equal-constant-time: 1.0.1 + ecdsa-sig-formatter: 1.0.11 + safe-buffer: 5.2.1 + dev: true + + /jws@3.2.2: + resolution: + { integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== } + dependencies: + jwa: 1.4.1 + safe-buffer: 5.2.1 + dev: true + + /kind-of@3.2.2: + resolution: + { integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== } + engines: { node: ">=0.10.0" } + dependencies: + is-buffer: 1.1.6 + dev: true + + /kind-of@6.0.3: + resolution: + { integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== } + engines: { node: ">=0.10.0" } + dev: true + + /klaw@3.0.0: + resolution: + { integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g== } + dependencies: + graceful-fs: 4.2.11 + dev: true + + /lazy-ass@1.6.0: + resolution: + { integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== } + engines: { node: "> 0.8" } + dev: true + + /lazy-cache@1.0.4: + resolution: + { integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ== } + engines: { node: ">=0.10.0" } + dev: true + + /levn@0.4.1: + resolution: + { integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== } + engines: { node: ">= 0.8.0" } + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lilconfig@2.1.0: + resolution: + { integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== } + engines: { node: ">=10" } + dev: true + + /lines-and-columns@1.2.4: + resolution: + { integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== } + dev: true + + /lines-and-columns@2.0.3: + resolution: + { integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dev: true + + /linkify-it@3.0.3: + resolution: + { integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== } + dependencies: + uc.micro: 1.0.6 + dev: true + + /lint-staged@13.2.3: + resolution: + { integrity: sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg== } + engines: { node: ^14.13.1 || >=16.0.0 } + hasBin: true + dependencies: + chalk: 5.2.0 + cli-truncate: 3.1.0 + commander: 10.0.1 + debug: 4.3.4(supports-color@8.1.1) + execa: 7.1.1 + lilconfig: 2.1.0 + listr2: 5.0.8 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-inspect: 1.12.3 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.3.1 + transitivePeerDependencies: + - enquirer + - supports-color + dev: true + + /listr2@3.14.0(enquirer@2.3.6): + resolution: + { integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g== } + engines: { node: ">=10.0.0" } + peerDependencies: + enquirer: ">= 2.3.0 < 3" + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.20 + enquirer: 2.3.6 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.3.0 + rxjs: 7.8.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /listr2@5.0.8: + resolution: + { integrity: sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA== } + engines: { node: ^14.13.1 || >=16.0.0 } + peerDependencies: + enquirer: ">= 2.3.0 < 3" + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.20 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.3.0 + rxjs: 7.8.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /load-json-file@4.0.0: + resolution: + { integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== } + engines: { node: ">=4" } + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + dev: true + + /loader-runner@4.3.0: + resolution: + { integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== } + engines: { node: ">=6.11.5" } + dev: true + + /local-pkg@0.4.3: + resolution: + { integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== } + engines: { node: ">=14" } + dev: true + + /locate-path@2.0.0: + resolution: + { integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== } + engines: { node: ">=4" } + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path@5.0.0: + resolution: + { integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== } + engines: { node: ">=8" } + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: + { integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== } + engines: { node: ">=10" } + dependencies: + p-locate: 5.0.0 + dev: true + + /locate-path@7.2.0: + resolution: + { integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + p-locate: 6.0.0 + dev: true + + /lodash-es@4.17.21: + resolution: + { integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== } + dev: true + + /lodash.camelcase@4.3.0: + resolution: + { integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== } + dev: true + + /lodash.capitalize@4.2.1: + resolution: + { integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw== } + dev: true + + /lodash.debounce@4.0.8: + resolution: + { integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== } + dev: true + + /lodash.escaperegexp@4.1.2: + resolution: + { integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw== } + dev: true + + /lodash.flattendeep@4.4.0: + resolution: + { integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ== } + dev: true + + /lodash.get@4.4.2: + resolution: + { integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== } + dev: true + + /lodash.isequal@4.5.0: + resolution: + { integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== } + dev: true + + /lodash.isfunction@3.0.9: + resolution: + { integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== } + dev: true + + /lodash.ismatch@4.4.0: + resolution: + { integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== } + dev: true + + /lodash.isplainobject@4.0.6: + resolution: + { integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== } + dev: true + + /lodash.isstring@4.0.1: + resolution: + { integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw== } + dev: true + + /lodash.kebabcase@4.1.1: + resolution: + { integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== } + dev: true + + /lodash.map@4.6.0: + resolution: + { integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== } + dev: true + + /lodash.merge@4.6.2: + resolution: + { integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== } + dev: true + + /lodash.mergewith@4.6.2: + resolution: + { integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== } + dev: true + + /lodash.once@4.1.1: + resolution: + { integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== } + dev: true + + /lodash.snakecase@4.1.1: + resolution: + { integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw== } + dev: true + + /lodash.startcase@4.4.0: + resolution: + { integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== } + dev: true + + /lodash.uniq@4.5.0: + resolution: + { integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== } + dev: true + + /lodash.uniqby@4.7.0: + resolution: + { integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww== } + dev: true + + /lodash.upperfirst@4.3.1: + resolution: + { integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== } + dev: true + + /lodash@4.17.21: + resolution: + { integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== } + dev: true + + /log-symbols@4.1.0: + resolution: + { integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== } + engines: { node: ">=10" } + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + + /log-update@4.0.0: + resolution: + { integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== } + engines: { node: ">=10" } + dependencies: + ansi-escapes: 4.3.2 + cli-cursor: 3.1.0 + slice-ansi: 4.0.0 + wrap-ansi: 6.2.0 + dev: true + + /longest@1.0.1: + resolution: + { integrity: sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg== } + engines: { node: ">=0.10.0" } + dev: true + + /longest@2.0.1: + resolution: + { integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q== } + engines: { node: ">=0.10.0" } + dev: true + + /loose-envify@1.4.0: + resolution: + { integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== } + hasBin: true + dependencies: + js-tokens: 4.0.0 + + /loupe@2.3.6: + resolution: + { integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== } + dependencies: + get-func-name: 2.0.0 + dev: true + + /lru-cache@4.1.5: + resolution: + { integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== } + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + dev: true + + /lru-cache@5.1.1: + resolution: + { integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== } + dependencies: + yallist: 3.1.1 + dev: true + + /lru-cache@6.0.0: + resolution: + { integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== } + engines: { node: ">=10" } + dependencies: + yallist: 4.0.0 + dev: true + + /lru-cache@7.18.3: + resolution: + { integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== } + engines: { node: ">=12" } + dev: true + + /lru-cache@9.1.2: + resolution: + { integrity: sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ== } + engines: { node: 14 || >=16.14 } + dev: true + + /magic-string@0.25.9: + resolution: + { integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== } + dependencies: + sourcemap-codec: 1.4.8 + dev: true + + /magic-string@0.27.0: + resolution: + { integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA== } + engines: { node: ">=12" } + dependencies: + "@jridgewell/sourcemap-codec": 1.4.15 + dev: true + + /magic-string@0.30.0: + resolution: + { integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ== } + engines: { node: ">=12" } + dependencies: + "@jridgewell/sourcemap-codec": 1.4.15 + dev: true + + /make-dir@3.1.0: + resolution: + { integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== } + engines: { node: ">=8" } + dependencies: + semver: 6.3.0 + dev: true + + /make-error@1.3.6: + resolution: + { integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== } + dev: true + + /map-obj@1.0.1: + resolution: + { integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== } + engines: { node: ">=0.10.0" } + dev: true + + /map-obj@4.3.0: + resolution: + { integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== } + engines: { node: ">=8" } + dev: true + + /markdown-it-anchor@8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2): + resolution: + { integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA== } + peerDependencies: + "@types/markdown-it": "*" + markdown-it: "*" + dependencies: + "@types/markdown-it": 12.2.3 + markdown-it: 12.3.2 + dev: true + + /markdown-it@12.3.2: + resolution: + { integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== } + hasBin: true + dependencies: + argparse: 2.0.1 + entities: 2.1.0 + linkify-it: 3.0.3 + mdurl: 1.0.1 + uc.micro: 1.0.6 + dev: true + + /marked-terminal@5.2.0(marked@5.1.0): + resolution: + { integrity: sha512-Piv6yNwAQXGFjZSaiNljyNFw7jKDdGrw70FSbtxEyldLsyeuV5ZHm/1wW++kWbrOF1VPnUgYOhB2oLL0ZpnekA== } + engines: { node: ">=14.13.1 || >=16.0.0" } + peerDependencies: + marked: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + dependencies: + ansi-escapes: 6.2.0 + cardinal: 2.1.1 + chalk: 5.2.0 + cli-table3: 0.6.3 + marked: 5.1.0 + node-emoji: 1.11.0 + supports-hyperlinks: 2.3.0 + dev: true + + /marked@4.3.0: + resolution: + { integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A== } + engines: { node: ">= 12" } + hasBin: true + dev: true + + /marked@5.1.0: + resolution: + { integrity: sha512-z3/nBe7aTI8JDszlYLk7dDVNpngjw0o1ZJtrA9kIfkkHcIF+xH7mO23aISl4WxP83elU+MFROgahqdpd05lMEQ== } + engines: { node: ">= 18" } + hasBin: true + dev: true + + /mdurl@1.0.1: + resolution: + { integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== } + dev: true + + /meow@8.1.2: + resolution: + { integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== } + engines: { node: ">=10" } + dependencies: + "@types/minimist": 1.2.2 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-stream@2.0.0: + resolution: + { integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== } + dev: true + + /merge2@1.4.1: + resolution: + { integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== } + engines: { node: ">= 8" } + dev: true + + /merge@2.1.1: + resolution: + { integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w== } + dev: true + + /micromatch@4.0.5: + resolution: + { integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== } + engines: { node: ">=8.6" } + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db@1.52.0: + resolution: + { integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== } + engines: { node: ">= 0.6" } + dev: true + + /mime-types@2.1.35: + resolution: + { integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== } + engines: { node: ">= 0.6" } + dependencies: + mime-db: 1.52.0 + dev: true + + /mime@3.0.0: + resolution: + { integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== } + engines: { node: ">=10.0.0" } + hasBin: true + dev: true + + /mimic-fn@2.1.0: + resolution: + { integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== } + engines: { node: ">=6" } + dev: true + + /mimic-fn@4.0.0: + resolution: + { integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== } + engines: { node: ">=12" } + dev: true + + /min-indent@1.0.1: + resolution: + { integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== } + engines: { node: ">=4" } + dev: true + + /minami@1.2.3: + resolution: + { integrity: sha512-3f2QqqbUC1usVux0FkQMFYB73yd9JIxmHSn1dWQacizL6hOUaNu6mA3KxZ9SfiCc4qgcgq+5XP59+hP7URa1Dw== } + dev: true + + /minimatch@3.1.2: + resolution: + { integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== } + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch@5.1.6: + resolution: + { integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== } + engines: { node: ">=10" } + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimatch@9.0.1: + resolution: + { integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w== } + engines: { node: ">=16 || 14 >=14.17" } + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimist-options@4.1.0: + resolution: + { integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== } + engines: { node: ">= 6" } + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist@1.2.7: + resolution: + { integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== } + dev: true + + /minimist@1.2.8: + resolution: + { integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== } + dev: true + + /minipass@6.0.2: + resolution: + { integrity: sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w== } + engines: { node: ">=16 || 14 >=14.17" } + dev: true + + /mkdirp@1.0.4: + resolution: + { integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== } + engines: { node: ">=10" } + hasBin: true + dev: true + + /mlly@1.4.0: + resolution: + { integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg== } + dependencies: + acorn: 8.9.0 + pathe: 1.1.1 + pkg-types: 1.0.3 + ufo: 1.1.2 + dev: true + + /modify-values@1.0.1: + resolution: + { integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== } + engines: { node: ">=0.10.0" } + dev: true + + /ms@2.1.2: + resolution: + { integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== } + dev: true + + /ms@2.1.3: + resolution: + { integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== } + dev: true + + /mute-stream@0.0.8: + resolution: + { integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== } + dev: true + + /nanoid@3.3.6: + resolution: + { integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true + dev: true + + /natural-compare-lite@1.4.0: + resolution: + { integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== } + dev: true + + /natural-compare@1.4.0: + resolution: + { integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== } + dev: true + + /neo-async@2.6.2: + resolution: + { integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== } + dev: true + + /nerf-dart@1.0.0: + resolution: + { integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g== } + dev: true + + /node-dir@0.1.17: + resolution: + { integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== } + engines: { node: ">= 0.10.5" } + dependencies: + minimatch: 3.1.2 + dev: true + + /node-emoji@1.11.0: + resolution: + { integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== } + dependencies: + lodash: 4.17.21 + dev: true + + /node-fetch@2.6.11: + resolution: + { integrity: sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== } + engines: { node: 4.x || >=6.0.0 } + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + + /node-preload@0.2.1: + resolution: + { integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ== } + engines: { node: ">=8" } + dependencies: + process-on-spawn: 1.0.0 + dev: true + + /node-releases@2.0.12: + resolution: + { integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== } + dev: true + + /normalize-package-data@2.5.0: + resolution: + { integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== } + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.2 + semver: 5.7.1 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@3.0.3: + resolution: + { integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== } + engines: { node: ">=10" } + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.12.1 + semver: 7.5.2 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@5.0.0: + resolution: + { integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q== } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + dependencies: + hosted-git-info: 6.1.1 + is-core-module: 2.12.1 + semver: 7.5.2 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: + { integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== } + engines: { node: ">=0.10.0" } + dev: true + + /normalize-url@8.0.0: + resolution: + { integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw== } + engines: { node: ">=14.16" } + dev: true + + /npm-run-path@4.0.1: + resolution: + { integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== } + engines: { node: ">=8" } + dependencies: + path-key: 3.1.1 + dev: true + + /npm-run-path@5.1.0: + resolution: + { integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + path-key: 4.0.0 + dev: true + + /npm@9.7.1: + resolution: + { integrity: sha512-kxMviaiLX4Lfnjy2dt7EWB87v5QdLiGpy04S2ORdKLmPqFhgy8g4cgJjQfnWob4mJIaNHjBO+hk45CvLlsZZ8g== } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + hasBin: true + dev: true + bundledDependencies: + - "@isaacs/string-locale-compare" + - "@npmcli/arborist" + - "@npmcli/config" + - "@npmcli/map-workspaces" + - "@npmcli/package-json" + - "@npmcli/run-script" + - abbrev + - archy + - cacache + - chalk + - ci-info + - cli-columns + - cli-table3 + - columnify + - fastest-levenshtein + - fs-minipass + - glob + - graceful-fs + - hosted-git-info + - ini + - init-package-json + - is-cidr + - json-parse-even-better-errors + - libnpmaccess + - libnpmdiff + - libnpmexec + - libnpmfund + - libnpmhook + - libnpmorg + - libnpmpack + - libnpmpublish + - libnpmsearch + - libnpmteam + - libnpmversion + - make-fetch-happen + - minimatch + - minipass + - minipass-pipeline + - ms + - node-gyp + - nopt + - npm-audit-report + - npm-install-checks + - npm-package-arg + - npm-pick-manifest + - npm-profile + - npm-registry-fetch + - npm-user-validate + - npmlog + - p-map + - pacote + - parse-conflict-json + - proc-log + - qrcode-terminal + - read + - semver + - sigstore + - ssri + - tar + - text-table + - tiny-relative-date + - treeverse + - validate-npm-package-name + - which + - write-file-atomic + + /nwsapi@2.2.6: + resolution: + { integrity: sha512-vSZ4miHQ4FojLjmz2+ux4B0/XA16jfwt/LBzIUftDpRd8tujHFkXjMyLwjS08fIZCzesj2z7gJukOKJwqebJAQ== } + dev: true + + /nyc@15.1.0: + resolution: + { integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A== } + engines: { node: ">=8.9" } + hasBin: true + dependencies: + "@istanbuljs/load-nyc-config": 1.1.0 + "@istanbuljs/schema": 0.1.3 + caching-transform: 4.0.0 + convert-source-map: 1.9.0 + decamelize: 1.2.0 + find-cache-dir: 3.3.2 + find-up: 4.1.0 + foreground-child: 2.0.0 + get-package-type: 0.1.0 + glob: 7.2.3 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-hook: 3.0.0 + istanbul-lib-instrument: 4.0.3 + istanbul-lib-processinfo: 2.0.3 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.5 + make-dir: 3.1.0 + node-preload: 0.2.1 + p-map: 3.0.0 + process-on-spawn: 1.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + signal-exit: 3.0.7 + spawn-wrap: 2.0.0 + test-exclude: 6.0.0 + yargs: 15.4.1 + transitivePeerDependencies: + - supports-color + dev: true + + /object-assign@4.1.1: + resolution: + { integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== } + engines: { node: ">=0.10.0" } + + /object-inspect@1.12.3: + resolution: + { integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== } + dev: true + + /object-keys@1.1.1: + resolution: + { integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== } + engines: { node: ">= 0.4" } + dev: true + + /object.assign@4.1.4: + resolution: + { integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.values@1.1.6: + resolution: + { integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /octokit@2.1.0: + resolution: + { integrity: sha512-Pxi6uKTjBRZWgAwsw1NgHdRlL+QASCN35OYS7X79o7PtBME0CLXEroZmPtEwlWZbPTP+iDbEy2wCbSOgm0uGIQ== } + engines: { node: ">= 14" } + dependencies: + "@octokit/app": 13.1.8 + "@octokit/core": 4.2.4 + "@octokit/oauth-app": 4.2.4 + "@octokit/plugin-paginate-rest": 6.1.2(@octokit/core@4.2.4) + "@octokit/plugin-rest-endpoint-methods": 7.2.3(@octokit/core@4.2.4) + "@octokit/plugin-retry": 4.1.6(@octokit/core@4.2.4) + "@octokit/plugin-throttling": 5.2.3(@octokit/core@4.2.4) + "@octokit/request-error": 3.0.3 + "@octokit/types": 9.3.2 + transitivePeerDependencies: + - encoding + dev: true + + /once@1.4.0: + resolution: + { integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== } + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: + { integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== } + engines: { node: ">=6" } + dependencies: + mimic-fn: 2.1.0 + dev: true + + /onetime@6.0.0: + resolution: + { integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== } + engines: { node: ">=12" } + dependencies: + mimic-fn: 4.0.0 + dev: true + + /optionator@0.9.3: + resolution: + { integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== } + engines: { node: ">= 0.8.0" } + dependencies: + "@aashutoshrathi/word-wrap": 1.2.6 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /ora@5.4.1: + resolution: + { integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== } + engines: { node: ">=10" } + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.0 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /os-tmpdir@1.0.2: + resolution: + { integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== } + engines: { node: ">=0.10.0" } + dev: true + + /ospath@1.2.2: + resolution: + { integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== } + dev: true + + /p-each-series@3.0.0: + resolution: + { integrity: sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw== } + engines: { node: ">=12" } + dev: true + + /p-filter@3.0.0: + resolution: + { integrity: sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + p-map: 5.5.0 + dev: true + + /p-is-promise@3.0.0: + resolution: + { integrity: sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ== } + engines: { node: ">=8" } + dev: true + + /p-limit@1.3.0: + resolution: + { integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== } + engines: { node: ">=4" } + dependencies: + p-try: 1.0.0 + dev: true + + /p-limit@2.3.0: + resolution: + { integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== } + engines: { node: ">=6" } + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: + { integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== } + engines: { node: ">=10" } + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-limit@4.0.0: + resolution: + { integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + yocto-queue: 1.0.0 + dev: true + + /p-locate@2.0.0: + resolution: + { integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== } + engines: { node: ">=4" } + dependencies: + p-limit: 1.3.0 + dev: true + + /p-locate@4.1.0: + resolution: + { integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== } + engines: { node: ">=8" } + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: + { integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== } + engines: { node: ">=10" } + dependencies: + p-limit: 3.1.0 + dev: true + + /p-locate@6.0.0: + resolution: + { integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + p-limit: 4.0.0 + dev: true + + /p-map@3.0.0: + resolution: + { integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== } + engines: { node: ">=8" } + dependencies: + aggregate-error: 3.1.0 + dev: true + + /p-map@4.0.0: + resolution: + { integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== } + engines: { node: ">=10" } + dependencies: + aggregate-error: 3.1.0 + dev: true + + /p-map@5.5.0: + resolution: + { integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg== } + engines: { node: ">=12" } + dependencies: + aggregate-error: 4.0.1 + dev: true + + /p-reduce@2.1.0: + resolution: + { integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== } + engines: { node: ">=8" } + dev: true + + /p-reduce@3.0.0: + resolution: + { integrity: sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q== } + engines: { node: ">=12" } + dev: true + + /p-try@1.0.0: + resolution: + { integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== } + engines: { node: ">=4" } + dev: true + + /p-try@2.2.0: + resolution: + { integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== } + engines: { node: ">=6" } + dev: true + + /package-hash@4.0.0: + resolution: + { integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ== } + engines: { node: ">=8" } + dependencies: + graceful-fs: 4.2.11 + hasha: 5.2.2 + lodash.flattendeep: 4.4.0 + release-zalgo: 1.0.0 + dev: true + + /parent-module@1.0.1: + resolution: + { integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== } + engines: { node: ">=6" } + dependencies: + callsites: 3.1.0 + dev: true + + /parse-json@4.0.0: + resolution: + { integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== } + engines: { node: ">=4" } + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + dev: true + + /parse-json@5.2.0: + resolution: + { integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== } + engines: { node: ">=8" } + dependencies: + "@babel/code-frame": 7.22.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-json@7.0.0: + resolution: + { integrity: sha512-kP+TQYAzAiVnzOlWOe0diD6L35s9bJh0SCn95PIbZFKrOYuIRQsQkeWEYxzVDuHTt9V9YqvYCJ2Qo4z9wdfZPw== } + engines: { node: ">=16" } + dependencies: + "@babel/code-frame": 7.22.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 3.0.0 + lines-and-columns: 2.0.3 + type-fest: 3.12.0 + dev: true + + /parse-passwd@1.0.0: + resolution: + { integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== } + engines: { node: ">=0.10.0" } + dev: true + + /parse5@7.1.2: + resolution: + { integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== } + dependencies: + entities: 4.5.0 + dev: true + + /path-exists@3.0.0: + resolution: + { integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== } + engines: { node: ">=4" } + dev: true + + /path-exists@4.0.0: + resolution: + { integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== } + engines: { node: ">=8" } + dev: true + + /path-exists@5.0.0: + resolution: + { integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dev: true + + /path-is-absolute@1.0.1: + resolution: + { integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== } + engines: { node: ">=0.10.0" } + dev: true + + /path-key@3.1.1: + resolution: + { integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== } + engines: { node: ">=8" } + dev: true + + /path-key@4.0.0: + resolution: + { integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== } + engines: { node: ">=12" } + dev: true + + /path-parse@1.0.7: + resolution: + { integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== } + dev: true + + /path-scurry@1.9.2: + resolution: + { integrity: sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg== } + engines: { node: ">=16 || 14 >=14.17" } + dependencies: + lru-cache: 9.1.2 + minipass: 6.0.2 + dev: true + + /path-type@4.0.0: + resolution: + { integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== } + engines: { node: ">=8" } + dev: true + + /pathe@1.1.1: + resolution: + { integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q== } + dev: true + + /pathval@1.1.1: + resolution: + { integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== } + dev: true + + /pend@1.2.0: + resolution: + { integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== } + dev: true + + /performance-now@2.1.0: + resolution: + { integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== } + dev: true + + /picocolors@1.0.0: + resolution: + { integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== } + dev: true + + /picomatch@2.3.1: + resolution: + { integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== } + engines: { node: ">=8.6" } + dev: true + + /pidtree@0.6.0: + resolution: + { integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== } + engines: { node: ">=0.10" } + hasBin: true + dev: true + + /pify@2.3.0: + resolution: + { integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== } + engines: { node: ">=0.10.0" } + dev: true + + /pify@3.0.0: + resolution: + { integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== } + engines: { node: ">=4" } + dev: true + + /pkg-conf@2.1.0: + resolution: + { integrity: sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g== } + engines: { node: ">=4" } + dependencies: + find-up: 2.1.0 + load-json-file: 4.0.0 + dev: true + + /pkg-dir@4.2.0: + resolution: + { integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== } + engines: { node: ">=8" } + dependencies: + find-up: 4.1.0 + dev: true + + /pkg-types@1.0.3: + resolution: + { integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== } + dependencies: + jsonc-parser: 3.2.0 + mlly: 1.4.0 + pathe: 1.1.1 + dev: true + + /postcss@8.4.24: + resolution: + { integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg== } + engines: { node: ^10 || ^12 || >=14 } + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /preact@10.15.1: + resolution: + { integrity: sha512-qs2ansoQEwzNiV5eAcRT1p1EC/dmEzaATVDJNiB3g2sRDWdA7b7MurXdJjB2+/WQktGWZwxvDrnuRFbWuIr64g== } + dev: true + + /prelude-ls@1.2.1: + resolution: + { integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== } + engines: { node: ">= 0.8.0" } + dev: true + + /prettier-linter-helpers@1.0.0: + resolution: + { integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== } + engines: { node: ">=6.0.0" } + dependencies: + fast-diff: 1.3.0 + dev: true + + /prettier@2.8.8: + resolution: + { integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== } + engines: { node: ">=10.13.0" } + hasBin: true + dev: true + + /pretty-bytes@5.6.0: + resolution: + { integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== } + engines: { node: ">=6" } + dev: true + + /pretty-format@29.6.0: + resolution: + { integrity: sha512-XH+D4n7Ey0iSR6PdAnBs99cWMZdGsdKrR33iUHQNr79w1szKTCIZDVdXuccAsHVwDBp0XeWPfNEoaxP9EZgRmQ== } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + "@jest/schemas": 29.6.0 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + + /prismjs@1.29.0: + resolution: + { integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== } + engines: { node: ">=6" } + dev: true + + /private@0.1.8: + resolution: + { integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== } + engines: { node: ">= 0.6" } + dev: true + + /process-nextick-args@2.0.1: + resolution: + { integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== } + dev: true + + /process-on-spawn@1.0.0: + resolution: + { integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg== } + engines: { node: ">=8" } + dependencies: + fromentries: 1.3.2 + dev: true + + /promise@7.3.1: + resolution: + { integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== } + dependencies: + asap: 2.0.6 + dev: true + + /prop-types@15.8.1: + resolution: + { integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + /proto-list@1.2.4: + resolution: + { integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== } + dev: true + + /proxy-from-env@1.0.0: + resolution: + { integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== } + dev: true + + /pseudomap@1.0.2: + resolution: + { integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== } + dev: true + + /psl@1.9.0: + resolution: + { integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== } + dev: true + + /pug-attrs@2.0.4: + resolution: + { integrity: sha512-TaZ4Z2TWUPDJcV3wjU3RtUXMrd3kM4Wzjbe3EWnSsZPsJ3LDI0F3yCnf2/W7PPFF+edUFQ0HgDL1IoxSz5K8EQ== } + dependencies: + constantinople: 3.1.2 + js-stringify: 1.0.2 + pug-runtime: 2.0.5 + dev: true + + /pug-code-gen@2.0.3: + resolution: + { integrity: sha512-r9sezXdDuZJfW9J91TN/2LFbiqDhmltTFmGpHTsGdrNGp3p4SxAjjXEfnuK2e4ywYsRIVP0NeLbSAMHUcaX1EA== } + dependencies: + constantinople: 3.1.2 + doctypes: 1.1.0 + js-stringify: 1.0.2 + pug-attrs: 2.0.4 + pug-error: 1.3.3 + pug-runtime: 2.0.5 + void-elements: 2.0.1 + with: 5.1.1 + dev: true + + /pug-error@1.3.3: + resolution: + { integrity: sha512-qE3YhESP2mRAWMFJgKdtT5D7ckThRScXRwkfo+Erqga7dyJdY3ZquspprMCj/9sJ2ijm5hXFWQE/A3l4poMWiQ== } + dev: true + + /pug-filters@3.1.1: + resolution: + { integrity: sha512-lFfjNyGEyVWC4BwX0WyvkoWLapI5xHSM3xZJFUhx4JM4XyyRdO8Aucc6pCygnqV2uSgJFaJWW3Ft1wCWSoQkQg== } + dependencies: + clean-css: 4.2.4 + constantinople: 3.1.2 + jstransformer: 1.0.0 + pug-error: 1.3.3 + pug-walk: 1.1.8 + resolve: 1.22.2 + uglify-js: 2.8.29 + dev: true + + /pug-lexer@4.1.0: + resolution: + { integrity: sha512-i55yzEBtjm0mlplW4LoANq7k3S8gDdfC6+LThGEvsK4FuobcKfDAwt6V4jKPH9RtiE3a2Akfg5UpafZ1OksaPA== } + dependencies: + character-parser: 2.2.0 + is-expression: 3.0.0 + pug-error: 1.3.3 + dev: true + + /pug-linker@3.0.6: + resolution: + { integrity: sha512-bagfuHttfQOpANGy1Y6NJ+0mNb7dD2MswFG2ZKj22s8g0wVsojpRlqveEQHmgXXcfROB2RT6oqbPYr9EN2ZWzg== } + dependencies: + pug-error: 1.3.3 + pug-walk: 1.1.8 + dev: true + + /pug-load@2.0.12: + resolution: + { integrity: sha512-UqpgGpyyXRYgJs/X60sE6SIf8UBsmcHYKNaOccyVLEuT6OPBIMo6xMPhoJnqtB3Q3BbO4Z3Bjz5qDsUWh4rXsg== } + dependencies: + object-assign: 4.1.1 + pug-walk: 1.1.8 + dev: true + + /pug-parser@5.0.1: + resolution: + { integrity: sha512-nGHqK+w07p5/PsPIyzkTQfzlYfuqoiGjaoqHv1LjOv2ZLXmGX1O+4Vcvps+P4LhxZ3drYSljjq4b+Naid126wA== } + dependencies: + pug-error: 1.3.3 + token-stream: 0.0.1 + dev: true + + /pug-runtime@2.0.5: + resolution: + { integrity: sha512-P+rXKn9un4fQY77wtpcuFyvFaBww7/91f3jHa154qU26qFAnOe6SW1CbIDcxiG5lLK9HazYrMCCuDvNgDQNptw== } + dev: true + + /pug-strip-comments@1.0.4: + resolution: + { integrity: sha512-i5j/9CS4yFhSxHp5iKPHwigaig/VV9g+FgReLJWWHEHbvKsbqL0oP/K5ubuLco6Wu3Kan5p7u7qk8A4oLLh6vw== } + dependencies: + pug-error: 1.3.3 + dev: true + + /pug-walk@1.1.8: + resolution: + { integrity: sha512-GMu3M5nUL3fju4/egXwZO0XLi6fW/K3T3VTgFQ14GxNi8btlxgT5qZL//JwZFm/2Fa64J/PNS8AZeys3wiMkVA== } + dev: true + + /pug@2.0.4: + resolution: + { integrity: sha512-XhoaDlvi6NIzL49nu094R2NA6P37ijtgMDuWE+ofekDChvfKnzFal60bhSdiy8y2PBO6fmz3oMEIcfpBVRUdvw== } + dependencies: + pug-code-gen: 2.0.3 + pug-filters: 3.1.1 + pug-lexer: 4.1.0 + pug-linker: 3.0.6 + pug-load: 2.0.12 + pug-parser: 5.0.1 + pug-runtime: 2.0.5 + pug-strip-comments: 1.0.4 + dev: true + + /pump@3.0.0: + resolution: + { integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== } + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /punycode@2.3.0: + resolution: + { integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== } + engines: { node: ">=6" } + dev: true + + /q@1.5.1: + resolution: + { integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== } + engines: { node: ">=0.6.0", teleport: ">=0.2.0" } + dev: true + + /qs@6.10.4: + resolution: + { integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g== } + engines: { node: ">=0.6" } + dependencies: + side-channel: 1.0.4 + dev: true + + /querystringify@2.2.0: + resolution: + { integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== } + dev: true + + /queue-microtask@1.2.3: + resolution: + { integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== } + dev: true + + /quick-lru@4.0.1: + resolution: + { integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== } + engines: { node: ">=8" } + dev: true + + /randombytes@2.1.0: + resolution: + { integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== } + dependencies: + safe-buffer: 5.2.1 + dev: true + + /rc@1.2.8: + resolution: + { integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== } + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.8 + strip-json-comments: 2.0.1 + dev: true + + /react-ace@9.5.0(react-dom@17.0.2)(react@17.0.2): + resolution: + { integrity: sha512-4l5FgwGh6K7A0yWVMQlPIXDItM4Q9zzXRqOae8KkCl6MkOob7sC1CzHxZdOGvV+QioKWbX2p5HcdOVUv6cAdSg== } + peerDependencies: + react: ^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 + react-dom: ^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 + dependencies: + ace-builds: 1.22.1 + diff-match-patch: 1.0.5 + lodash.get: 4.4.2 + lodash.isequal: 4.5.0 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /react-docgen@5.4.3: + resolution: + { integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA== } + engines: { node: ">=8.10.0" } + hasBin: true + dependencies: + "@babel/core": 7.22.5 + "@babel/generator": 7.22.5 + "@babel/runtime": 7.22.5 + ast-types: 0.14.2 + commander: 2.20.3 + doctrine: 3.0.0 + estree-to-babel: 3.2.1 + neo-async: 2.6.2 + node-dir: 0.1.17 + strip-indent: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /react-dom@17.0.2(react@17.0.2): + resolution: + { integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== } + peerDependencies: + react: 17.0.2 + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react: 17.0.2 + scheduler: 0.20.2 + + /react-frame-component@5.2.6(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2): + resolution: + { integrity: sha512-CwkEM5VSt6nFwZ1Op8hi3JB5rPseZlmnp5CGiismVTauE6S4Jsc4TNMlT0O7Cts4WgIC3ZBAQ2p1Mm9XgLbj+w== } + peerDependencies: + prop-types: ^15.5.9 + react: ">= 16.3" + react-dom: ">= 16.3" + dependencies: + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /react-is@16.13.1: + resolution: + { integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== } + + /react-is@18.2.0: + resolution: + { integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== } + dev: true + + /react@17.0.2: + resolution: + { integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== } + engines: { node: ">=0.10.0" } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + + /read-pkg-up@10.0.0: + resolution: + { integrity: sha512-jgmKiS//w2Zs+YbX039CorlkOp8FIVbSAN8r8GJHDsGlmNPXo+VeHkqAwCiQVTTx5/LwLZTcEw59z3DvcLbr0g== } + engines: { node: ">=16" } + dependencies: + find-up: 6.3.0 + read-pkg: 8.0.0 + type-fest: 3.12.0 + dev: true + + /read-pkg-up@7.0.1: + resolution: + { integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== } + engines: { node: ">=8" } + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg-up@9.1.0: + resolution: + { integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + find-up: 6.3.0 + read-pkg: 7.1.0 + type-fest: 2.19.0 + dev: true + + /read-pkg@5.2.0: + resolution: + { integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== } + engines: { node: ">=8" } + dependencies: + "@types/normalize-package-data": 2.4.1 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /read-pkg@7.1.0: + resolution: + { integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg== } + engines: { node: ">=12.20" } + dependencies: + "@types/normalize-package-data": 2.4.1 + normalize-package-data: 3.0.3 + parse-json: 5.2.0 + type-fest: 2.19.0 + dev: true + + /read-pkg@8.0.0: + resolution: + { integrity: sha512-Ajb9oSjxXBw0YyOiwtQ2dKbAA/vMnUPnY63XcCk+mXo0BwIdQEMgZLZiMWGttQHcUhUgbK0mH85ethMPKXxziw== } + engines: { node: ">=16" } + dependencies: + "@types/normalize-package-data": 2.4.1 + normalize-package-data: 5.0.0 + parse-json: 7.0.0 + type-fest: 3.12.0 + dev: true + + /readable-stream@2.3.8: + resolution: + { integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== } + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + dev: true + + /readable-stream@3.6.2: + resolution: + { integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== } + engines: { node: ">= 6" } + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /readdirp@3.6.0: + resolution: + { integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== } + engines: { node: ">=8.10.0" } + dependencies: + picomatch: 2.3.1 + dev: true + + /recast@0.17.6: + resolution: + { integrity: sha512-yoQRMRrK1lszNtbkGyM4kN45AwylV5hMiuEveUBlxytUViWevjvX6w+tzJt1LH4cfUhWt4NZvy3ThIhu6+m5wQ== } + engines: { node: ">= 4" } + dependencies: + ast-types: 0.12.4 + esprima: 4.0.1 + private: 0.1.8 + source-map: 0.6.1 + dev: true + + /redent@3.0.0: + resolution: + { integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== } + engines: { node: ">=8" } + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /redeyed@2.1.1: + resolution: + { integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ== } + dependencies: + esprima: 4.0.1 + dev: true + + /regenerate-unicode-properties@10.1.0: + resolution: + { integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== } + engines: { node: ">=4" } + dependencies: + regenerate: 1.4.2 + dev: true + + /regenerate@1.4.2: + resolution: + { integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== } + dev: true + + /regenerator-runtime@0.11.1: + resolution: + { integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== } + dev: true + + /regenerator-runtime@0.13.11: + resolution: + { integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== } + dev: true + + /regenerator-transform@0.15.1: + resolution: + { integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== } + dependencies: + "@babel/runtime": 7.22.5 + dev: true + + /regexp.prototype.flags@1.5.0: + resolution: + { integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + functions-have-names: 1.2.3 + dev: true + + /regexpu-core@5.3.2: + resolution: + { integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== } + engines: { node: ">=4" } + dependencies: + "@babel/regjsgen": 0.8.0 + regenerate: 1.4.2 + regenerate-unicode-properties: 10.1.0 + regjsparser: 0.9.1 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + dev: true + + /registry-auth-token@5.0.2: + resolution: + { integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ== } + engines: { node: ">=14" } + dependencies: + "@pnpm/npm-conf": 2.2.2 + dev: true + + /regjsparser@0.9.1: + resolution: + { integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== } + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /release-zalgo@1.0.0: + resolution: + { integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA== } + engines: { node: ">=4" } + dependencies: + es6-error: 4.1.1 + dev: true + + /repeat-string@1.6.1: + resolution: + { integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== } + engines: { node: ">=0.10" } + dev: true + + /request-progress@3.0.0: + resolution: + { integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg== } + dependencies: + throttleit: 1.0.0 + dev: true + + /require-directory@2.1.1: + resolution: + { integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== } + engines: { node: ">=0.10.0" } + dev: true + + /require-from-string@2.0.2: + resolution: + { integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== } + engines: { node: ">=0.10.0" } + dev: true + + /require-main-filename@2.0.0: + resolution: + { integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== } + dev: true + + /requires-port@1.0.0: + resolution: + { integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== } + dev: true + + /requizzle@0.2.4: + resolution: + { integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw== } + dependencies: + lodash: 4.17.21 + dev: true + + /resolve-dir@1.0.1: + resolution: + { integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg== } + engines: { node: ">=0.10.0" } + dependencies: + expand-tilde: 2.0.2 + global-modules: 1.0.0 + dev: true + + /resolve-from@4.0.0: + resolution: + { integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== } + engines: { node: ">=4" } + dev: true + + /resolve-from@5.0.0: + resolution: + { integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== } + engines: { node: ">=8" } + dev: true + + /resolve-global@1.0.0: + resolution: + { integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw== } + engines: { node: ">=8" } + dependencies: + global-dirs: 0.1.1 + dev: true + + /resolve@1.22.2: + resolution: + { integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== } + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /restore-cursor@3.1.0: + resolution: + { integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== } + engines: { node: ">=8" } + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /reusify@1.0.4: + resolution: + { integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== } + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } + dev: true + + /rfdc@1.3.0: + resolution: + { integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== } + dev: true + + /right-align@0.1.3: + resolution: + { integrity: sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg== } + engines: { node: ">=0.10.0" } + dependencies: + align-text: 0.1.4 + dev: true + + /rimraf@3.0.2: + resolution: + { integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== } + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rimraf@5.0.1: + resolution: + { integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg== } + engines: { node: ">=14" } + hasBin: true + dependencies: + glob: 10.2.7 + dev: true + + /rollup@2.77.3: + resolution: + { integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g== } + engines: { node: ">=10.0.0" } + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /rollup@3.26.0: + resolution: + { integrity: sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg== } + engines: { node: ">=14.18.0", npm: ">=8.0.0" } + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /rrweb-cssom@0.6.0: + resolution: + { integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== } + dev: true + + /run-async@2.4.1: + resolution: + { integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== } + engines: { node: ">=0.12.0" } + dev: true + + /run-parallel@1.2.0: + resolution: + { integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== } + dependencies: + queue-microtask: 1.2.3 + dev: true + + /rxjs@7.8.1: + resolution: + { integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== } + dependencies: + tslib: 2.5.3 + dev: true + + /safe-buffer@5.1.2: + resolution: + { integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== } + dev: true + + /safe-buffer@5.2.1: + resolution: + { integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== } + dev: true + + /safe-regex-test@1.0.0: + resolution: + { integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-regex: 1.1.4 + dev: true + + /safer-buffer@2.1.2: + resolution: + { integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== } + dev: true + + /saxes@6.0.0: + resolution: + { integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== } + engines: { node: ">=v12.22.7" } + dependencies: + xmlchars: 2.2.0 + dev: true + + /scheduler@0.20.2: + resolution: + { integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + + /schema-utils@3.3.0: + resolution: + { integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== } + engines: { node: ">= 10.13.0" } + dependencies: + "@types/json-schema": 7.0.12 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + dev: true + + /schema-utils@4.2.0: + resolution: + { integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== } + engines: { node: ">= 12.13.0" } + dependencies: + "@types/json-schema": 7.0.12 + ajv: 8.12.0 + ajv-formats: 2.1.1(ajv@8.12.0) + ajv-keywords: 5.1.0(ajv@8.12.0) + dev: true + + /search-insights@2.6.0: + resolution: + { integrity: sha512-vU2/fJ+h/Mkm/DJOe+EaM5cafJv/1rRTZpGJTuFPf/Q5LjzgMDsqPdSaZsAe+GAWHHsfsu+rQSAn6c8IGtBEVw== } + engines: { node: ">=8.16.0" } + dev: true + + /semantic-release@21.0.7: + resolution: + { integrity: sha512-peRDSXN+hF8EFSKzze90ff/EnAmgITHQ/a3SZpRV3479ny0BIZWEJ33uX6/GlOSKdaSxo9hVRDyv2/u2MuF+Bw== } + engines: { node: ">=18" } + hasBin: true + dependencies: + "@semantic-release/commit-analyzer": 10.0.1(semantic-release@21.0.7) + "@semantic-release/error": 4.0.0 + "@semantic-release/github": 9.0.3(semantic-release@21.0.7) + "@semantic-release/npm": 10.0.4(semantic-release@21.0.7) + "@semantic-release/release-notes-generator": 11.0.3(semantic-release@21.0.7) + aggregate-error: 4.0.1 + cosmiconfig: 8.2.0 + debug: 4.3.4(supports-color@8.1.1) + env-ci: 9.1.0 + execa: 7.1.1 + figures: 5.0.0 + find-versions: 5.1.0 + get-stream: 6.0.1 + git-log-parser: 1.2.0 + hook-std: 3.0.0 + hosted-git-info: 6.1.1 + lodash-es: 4.17.21 + marked: 5.1.0 + marked-terminal: 5.2.0(marked@5.1.0) + micromatch: 4.0.5 + p-each-series: 3.0.0 + p-reduce: 3.0.0 + read-pkg-up: 10.0.0 + resolve-from: 5.0.0 + semver: 7.5.2 + semver-diff: 4.0.0 + signale: 1.4.0 + yargs: 17.7.2 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /semver-diff@4.0.0: + resolution: + { integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA== } + engines: { node: ">=12" } + dependencies: + semver: 7.5.2 + dev: true + + /semver-regex@4.0.5: + resolution: + { integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw== } + engines: { node: ">=12" } + dev: true + + /semver@5.7.1: + resolution: + { integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== } + hasBin: true + dev: true + + /semver@6.3.0: + resolution: + { integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== } + hasBin: true + dev: true + + /semver@7.5.2: + resolution: + { integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ== } + engines: { node: ">=10" } + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /serialize-javascript@6.0.1: + resolution: + { integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== } + dependencies: + randombytes: 2.1.0 + dev: true + + /set-blocking@2.0.0: + resolution: + { integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== } + dev: true + + /shebang-command@2.0.0: + resolution: + { integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== } + engines: { node: ">=8" } + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@3.0.0: + resolution: + { integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== } + engines: { node: ">=8" } + dev: true + + /side-channel@1.0.4: + resolution: + { integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + object-inspect: 1.12.3 + dev: true + + /siginfo@2.0.0: + resolution: + { integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== } + dev: true + + /signal-exit@3.0.7: + resolution: + { integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== } + dev: true + + /signal-exit@4.0.2: + resolution: + { integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== } + engines: { node: ">=14" } + dev: true + + /signale@1.4.0: + resolution: + { integrity: sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w== } + engines: { node: ">=6" } + dependencies: + chalk: 2.4.2 + figures: 2.0.0 + pkg-conf: 2.1.0 + dev: true + + /slash@3.0.0: + resolution: + { integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== } + engines: { node: ">=8" } + dev: true + + /slash@4.0.0: + resolution: + { integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== } + engines: { node: ">=12" } + dev: true + + /slice-ansi@3.0.0: + resolution: + { integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== } + engines: { node: ">=8" } + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /slice-ansi@4.0.0: + resolution: + { integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== } + engines: { node: ">=10" } + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /slice-ansi@5.0.0: + resolution: + { integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== } + engines: { node: ">=12" } + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + dev: true + + /smob@1.4.0: + resolution: + { integrity: sha512-MqR3fVulhjWuRNSMydnTlweu38UhQ0HXM4buStD/S3mc/BzX3CuM9OmhyQpmtYCvoYdl5ris6TI0ZqH355Ymqg== } + dev: true + + /source-map-js@1.0.2: + resolution: + { integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== } + engines: { node: ">=0.10.0" } + dev: true + + /source-map-support@0.5.21: + resolution: + { integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== } + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map@0.5.7: + resolution: + { integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== } + engines: { node: ">=0.10.0" } + dev: true + + /source-map@0.6.1: + resolution: + { integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== } + engines: { node: ">=0.10.0" } + dev: true + + /sourcemap-codec@1.4.8: + resolution: + { integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== } + deprecated: Please use @jridgewell/sourcemap-codec instead + dev: true + + /spawn-error-forwarder@1.0.0: + resolution: + { integrity: sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g== } + dev: true + + /spawn-wrap@2.0.0: + resolution: + { integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg== } + engines: { node: ">=8" } + dependencies: + foreground-child: 2.0.0 + is-windows: 1.0.2 + make-dir: 3.1.0 + rimraf: 3.0.2 + signal-exit: 3.0.7 + which: 2.0.2 + dev: true + + /spdx-correct@3.2.0: + resolution: + { integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== } + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.13 + dev: true + + /spdx-exceptions@2.3.0: + resolution: + { integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== } + dev: true + + /spdx-expression-parse@3.0.1: + resolution: + { integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== } + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.13 + dev: true + + /spdx-license-ids@3.0.13: + resolution: + { integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== } + dev: true + + /split2@1.0.0: + resolution: + { integrity: sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg== } + dependencies: + through2: 2.0.5 + dev: true + + /split2@3.2.2: + resolution: + { integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== } + dependencies: + readable-stream: 3.6.2 + dev: true + + /split@1.0.1: + resolution: + { integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== } + dependencies: + through: 2.3.8 + dev: true + + /sprintf-js@1.0.3: + resolution: + { integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== } + dev: true + + /sshpk@1.17.0: + resolution: + { integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== } + engines: { node: ">=0.10.0" } + hasBin: true + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + dev: true + + /stackback@0.0.2: + resolution: + { integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== } + dev: true + + /std-env@3.3.3: + resolution: + { integrity: sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg== } + dev: true + + /stream-combiner2@1.1.1: + resolution: + { integrity: sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw== } + dependencies: + duplexer2: 0.1.4 + readable-stream: 2.3.8 + dev: true + + /string-argv@0.3.2: + resolution: + { integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== } + engines: { node: ">=0.6.19" } + dev: true + + /string-width@4.2.3: + resolution: + { integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== } + engines: { node: ">=8" } + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string-width@5.1.2: + resolution: + { integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== } + engines: { node: ">=12" } + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + dev: true + + /string.prototype.trim@1.2.7: + resolution: + { integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /string.prototype.trimend@1.0.6: + resolution: + { integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /string.prototype.trimstart@1.0.6: + resolution: + { integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /string_decoder@1.1.1: + resolution: + { integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== } + dependencies: + safe-buffer: 5.1.2 + dev: true + + /string_decoder@1.3.0: + resolution: + { integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== } + dependencies: + safe-buffer: 5.2.1 + dev: true + + /strip-ansi@6.0.1: + resolution: + { integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== } + engines: { node: ">=8" } + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-ansi@7.1.0: + resolution: + { integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== } + engines: { node: ">=12" } + dependencies: + ansi-regex: 6.0.1 + dev: true + + /strip-bom@3.0.0: + resolution: + { integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== } + engines: { node: ">=4" } + dev: true + + /strip-bom@4.0.0: + resolution: + { integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== } + engines: { node: ">=8" } + dev: true + + /strip-final-newline@2.0.0: + resolution: + { integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== } + engines: { node: ">=6" } + dev: true + + /strip-final-newline@3.0.0: + resolution: + { integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== } + engines: { node: ">=12" } + dev: true + + /strip-indent@3.0.0: + resolution: + { integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== } + engines: { node: ">=8" } + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@2.0.1: + resolution: + { integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== } + engines: { node: ">=0.10.0" } + dev: true + + /strip-json-comments@3.1.1: + resolution: + { integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== } + engines: { node: ">=8" } + dev: true + + /strip-literal@1.0.1: + resolution: + { integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q== } + dependencies: + acorn: 8.9.0 + dev: true + + /supports-color@5.5.0: + resolution: + { integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== } + engines: { node: ">=4" } + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: + { integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== } + engines: { node: ">=8" } + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-color@8.1.1: + resolution: + { integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== } + engines: { node: ">=10" } + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-hyperlinks@2.3.0: + resolution: + { integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== } + engines: { node: ">=8" } + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: + { integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== } + engines: { node: ">= 0.4" } + dev: true + + /symbol-tree@3.2.4: + resolution: + { integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== } + dev: true + + /tapable@2.2.1: + resolution: + { integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== } + engines: { node: ">=6" } + dev: true + + /temp-dir@2.0.0: + resolution: + { integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== } + engines: { node: ">=8" } + dev: true + + /tempy@3.0.0: + resolution: + { integrity: sha512-B2I9X7+o2wOaW4r/CWMkpOO9mdiTRCxXNgob6iGvPmfPWgH/KyUD6Uy5crtWBxIBe3YrNZKR2lSzv1JJKWD4vA== } + engines: { node: ">=14.16" } + dependencies: + is-stream: 3.0.0 + temp-dir: 2.0.0 + type-fest: 2.19.0 + unique-string: 3.0.0 + dev: true + + /terser-webpack-plugin@5.3.9(webpack@5.88.1): + resolution: + { integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== } + engines: { node: ">= 10.13.0" } + peerDependencies: + "@swc/core": "*" + esbuild: "*" + uglify-js: "*" + webpack: ^5.1.0 + peerDependenciesMeta: + "@swc/core": + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + "@jridgewell/trace-mapping": 0.3.18 + jest-worker: 27.5.1 + schema-utils: 3.3.0 + serialize-javascript: 6.0.1 + terser: 5.18.1 + webpack: 5.88.1 + dev: true + + /terser@5.18.1: + resolution: + { integrity: sha512-j1n0Ao919h/Ai5r43VAnfV/7azUYW43GPxK7qSATzrsERfW7+y2QW9Cp9ufnRF5CQUWbnLSo7UJokSWCqg4tsQ== } + engines: { node: ">=10" } + hasBin: true + dependencies: + "@jridgewell/source-map": 0.3.3 + acorn: 8.9.0 + commander: 2.20.3 + source-map-support: 0.5.21 + dev: true + + /test-exclude@6.0.0: + resolution: + { integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== } + engines: { node: ">=8" } + dependencies: + "@istanbuljs/schema": 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + dev: true + + /text-extensions@1.9.0: + resolution: + { integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== } + engines: { node: ">=0.10" } + dev: true + + /text-table@0.2.0: + resolution: + { integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== } + dev: true + + /throttleit@1.0.0: + resolution: + { integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== } + dev: true + + /through2@2.0.5: + resolution: + { integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== } + dependencies: + readable-stream: 2.3.8 + xtend: 4.0.2 + dev: true + + /through2@4.0.2: + resolution: + { integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== } + dependencies: + readable-stream: 3.6.2 + dev: true + + /through@2.3.8: + resolution: + { integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== } + dev: true + + /tinybench@2.5.0: + resolution: + { integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA== } + dev: true + + /tinypool@0.5.0: + resolution: + { integrity: sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ== } + engines: { node: ">=14.0.0" } + dev: true + + /tinyspy@2.1.1: + resolution: + { integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w== } + engines: { node: ">=14.0.0" } + dev: true + + /tmp@0.0.33: + resolution: + { integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== } + engines: { node: ">=0.6.0" } + dependencies: + os-tmpdir: 1.0.2 + dev: true + + /tmp@0.2.1: + resolution: + { integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== } + engines: { node: ">=8.17.0" } + dependencies: + rimraf: 3.0.2 + dev: true + + /to-fast-properties@1.0.3: + resolution: + { integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og== } + engines: { node: ">=0.10.0" } + dev: true + + /to-fast-properties@2.0.0: + resolution: + { integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== } + engines: { node: ">=4" } + dev: true + + /to-regex-range@5.0.1: + resolution: + { integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== } + engines: { node: ">=8.0" } + dependencies: + is-number: 7.0.0 + dev: true + + /token-stream@0.0.1: + resolution: + { integrity: sha512-nfjOAu/zAWmX9tgwi5NRp7O7zTDUD1miHiB40klUnAh9qnL1iXdgzcz/i5dMaL5jahcBAaSfmNOBBJBLJW8TEg== } + dev: true + + /tough-cookie@2.5.0: + resolution: + { integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== } + engines: { node: ">=0.8" } + dependencies: + psl: 1.9.0 + punycode: 2.3.0 + dev: true + + /tough-cookie@4.1.3: + resolution: + { integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== } + engines: { node: ">=6" } + dependencies: + psl: 1.9.0 + punycode: 2.3.0 + universalify: 0.2.0 + url-parse: 1.5.10 + dev: true + + /tr46@0.0.3: + resolution: + { integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== } + dev: true + + /tr46@4.1.1: + resolution: + { integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== } + engines: { node: ">=14" } + dependencies: + punycode: 2.3.0 + dev: true + + /traverse@0.6.7: + resolution: + { integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg== } + dev: true + + /trim-newlines@3.0.1: + resolution: + { integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== } + engines: { node: ">=8" } + dev: true + + /ts-map@1.0.3: + resolution: + { integrity: sha512-vDWbsl26LIcPGmDpoVzjEP6+hvHZkBkLW7JpvwbCv/5IYPJlsbzCVXY3wsCeAxAUeTclNOUZxnLdGh3VBD/J6w== } + dev: true + + /ts-node@10.9.1(@types/node@20.3.3)(typescript@5.1.6): + resolution: + { integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== } + hasBin: true + peerDependencies: + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" + peerDependenciesMeta: + "@swc/core": + optional: true + "@swc/wasm": + optional: true + dependencies: + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.9 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 20.3.3 + acorn: 8.9.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.1.6 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + + /tsconfig-paths@3.14.2: + resolution: + { integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== } + dependencies: + "@types/json5": 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + dev: true + + /tslib@1.14.1: + resolution: + { integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== } + dev: true + + /tslib@2.5.3: + resolution: + { integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== } + dev: true + + /tsutils@3.21.0(typescript@5.1.6): + resolution: + { integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== } + engines: { node: ">= 6" } + peerDependencies: + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + dependencies: + tslib: 1.14.1 + typescript: 5.1.6 + dev: true + + /tunnel-agent@0.6.0: + resolution: + { integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== } + dependencies: + safe-buffer: 5.2.1 + dev: true + + /tweetnacl@0.14.5: + resolution: + { integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== } + dev: true + + /type-check@0.4.0: + resolution: + { integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== } + engines: { node: ">= 0.8.0" } + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-detect@4.0.8: + resolution: + { integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== } + engines: { node: ">=4" } + dev: true + + /type-fest@0.18.1: + resolution: + { integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== } + engines: { node: ">=10" } + dev: true + + /type-fest@0.20.2: + resolution: + { integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== } + engines: { node: ">=10" } + dev: true + + /type-fest@0.21.3: + resolution: + { integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== } + engines: { node: ">=10" } + dev: true + + /type-fest@0.6.0: + resolution: + { integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== } + engines: { node: ">=8" } + dev: true + + /type-fest@0.8.1: + resolution: + { integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== } + engines: { node: ">=8" } + dev: true + + /type-fest@1.4.0: + resolution: + { integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== } + engines: { node: ">=10" } + dev: true + + /type-fest@2.19.0: + resolution: + { integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== } + engines: { node: ">=12.20" } + dev: true + + /type-fest@3.12.0: + resolution: + { integrity: sha512-qj9wWsnFvVEMUDbESiilKeXeHL7FwwiFcogfhfyjmvT968RXSvnl23f1JOClTHYItsi7o501C/7qVllscUP3oA== } + engines: { node: ">=14.16" } + dev: true + + /typed-array-length@1.0.4: + resolution: + { integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== } + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + is-typed-array: 1.1.10 + dev: true + + /typedarray-to-buffer@3.1.5: + resolution: + { integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== } + dependencies: + is-typedarray: 1.0.0 + dev: true + + /typescript@3.9.10: + resolution: + { integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== } + engines: { node: ">=4.2.0" } + hasBin: true + dev: true + + /typescript@4.9.5: + resolution: + { integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== } + engines: { node: ">=4.2.0" } + hasBin: true + dev: true + + /typescript@5.1.6: + resolution: + { integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== } + engines: { node: ">=14.17" } + hasBin: true + dev: true + + /uc.micro@1.0.6: + resolution: + { integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== } + dev: true + + /ufo@1.1.2: + resolution: + { integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ== } + dev: true + + /uglify-js@2.8.29: + resolution: + { integrity: sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w== } + engines: { node: ">=0.8.0" } + hasBin: true + dependencies: + source-map: 0.5.7 + yargs: 3.10.0 + optionalDependencies: + uglify-to-browserify: 1.0.2 + dev: true + + /uglify-js@3.17.4: + resolution: + { integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== } + engines: { node: ">=0.8.0" } + hasBin: true + requiresBuild: true + dev: true + optional: true + + /uglify-to-browserify@1.0.2: + resolution: + { integrity: sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q== } + requiresBuild: true + dev: true + optional: true + + /unbox-primitive@1.0.2: + resolution: + { integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== } + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /underscore@1.13.6: + resolution: + { integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== } + dev: true + + /unicode-canonical-property-names-ecmascript@2.0.0: + resolution: + { integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== } + engines: { node: ">=4" } + dev: true + + /unicode-match-property-ecmascript@2.0.0: + resolution: + { integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== } + engines: { node: ">=4" } + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.1.0 + dev: true + + /unicode-match-property-value-ecmascript@2.1.0: + resolution: + { integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== } + engines: { node: ">=4" } + dev: true + + /unicode-property-aliases-ecmascript@2.1.0: + resolution: + { integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== } + engines: { node: ">=4" } + dev: true + + /unique-string@3.0.0: + resolution: + { integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== } + engines: { node: ">=12" } + dependencies: + crypto-random-string: 4.0.0 + dev: true + + /universal-github-app-jwt@1.1.1: + resolution: + { integrity: sha512-G33RTLrIBMFmlDV4u4CBF7dh71eWwykck4XgaxaIVeZKOYZRAAxvcGMRFTUclVY6xoUPQvO4Ne5wKGxYm/Yy9w== } + dependencies: + "@types/jsonwebtoken": 9.0.2 + jsonwebtoken: 9.0.0 + dev: true + + /universal-user-agent@6.0.0: + resolution: + { integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== } + dev: true + + /universalify@0.2.0: + resolution: + { integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== } + engines: { node: ">= 4.0.0" } + dev: true + + /universalify@2.0.0: + resolution: + { integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== } + engines: { node: ">= 10.0.0" } + dev: true + + /untildify@4.0.0: + resolution: + { integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== } + engines: { node: ">=8" } + dev: true + + /update-browserslist-db@1.0.11(browserslist@4.21.9): + resolution: + { integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== } + hasBin: true + peerDependencies: + browserslist: ">= 4.21.0" + dependencies: + browserslist: 4.21.9 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js@4.4.1: + resolution: + { integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== } + dependencies: + punycode: 2.3.0 + dev: true + + /url-join@5.0.0: + resolution: + { integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA== } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dev: true + + /url-parse@1.5.10: + resolution: + { integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== } + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + + /util-deprecate@1.0.2: + resolution: + { integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== } + dev: true + + /uuid@8.3.2: + resolution: + { integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== } + hasBin: true + dev: true + + /v8-compile-cache-lib@3.0.1: + resolution: + { integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== } + dev: true + + /v8-to-istanbul@9.1.0: + resolution: + { integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== } + engines: { node: ">=10.12.0" } + dependencies: + "@jridgewell/trace-mapping": 0.3.18 + "@types/istanbul-lib-coverage": 2.0.4 + convert-source-map: 1.9.0 + dev: true + + /validate-npm-package-license@3.0.4: + resolution: + { integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== } + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + dev: true + + /verror@1.10.0: + resolution: + { integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== } + engines: { "0": node >=0.6.0 } + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + dev: true + + /vite-node@0.32.4(@types/node@20.3.3): + resolution: + { integrity: sha512-L2gIw+dCxO0LK14QnUMoqSYpa9XRGnTTTDjW2h19Mr+GR0EFj4vx52W41gFXfMLqpA00eK4ZjOVYo1Xk//LFEw== } + engines: { node: ">=v14.18.0" } + hasBin: true + dependencies: + cac: 6.7.14 + debug: 4.3.4(supports-color@8.1.1) + mlly: 1.4.0 + pathe: 1.1.1 + picocolors: 1.0.0 + vite: 4.3.9(@types/node@20.3.3) + transitivePeerDependencies: + - "@types/node" + - less + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /vite-plugin-banner@0.7.0: + resolution: + { integrity: sha512-g0cm0wbrR6b6wR8FWtfD1RSDPacdumKEOAnneXv+NpJ9ez+j6rklRv6lMOO+aPf+Y6Zb8OzgIk0FXBZ6h+DeZQ== } + dev: true + + /vite-plugin-istanbul@4.1.0(vite@4.3.9): + resolution: + { integrity: sha512-d8FRxaswOUYlGqCCNv2BTbt9pyqt7J4RPgab3WmMf+T2TflLlCmC7S26zDRfL9Ve4JSHrcf5bdzt+E0n9CrPvA== } + peerDependencies: + vite: ">=2.9.1 <= 5" + dependencies: + "@istanbuljs/load-nyc-config": 1.1.0 + istanbul-lib-instrument: 5.2.1 + picocolors: 1.0.0 + test-exclude: 6.0.0 + vite: 4.3.9(@types/node@20.3.3) + transitivePeerDependencies: + - supports-color + dev: true + + /vite@2.9.16: + resolution: + { integrity: sha512-X+6q8KPyeuBvTQV8AVSnKDvXoBMnTx8zxh54sOwmmuOdxkjMmEJXH2UEchA+vTMps1xw9vL64uwJOWryULg7nA== } + engines: { node: ">=12.2.0" } + hasBin: true + peerDependencies: + less: "*" + sass: "*" + stylus: "*" + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + dependencies: + esbuild: 0.14.54 + postcss: 8.4.24 + resolve: 1.22.2 + rollup: 2.77.3 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vite@4.3.9(@types/node@20.3.3): + resolution: + { integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg== } + engines: { node: ^14.18.0 || >=16.0.0 } + hasBin: true + peerDependencies: + "@types/node": ">= 14" + less: "*" + sass: "*" + stylus: "*" + sugarss: "*" + terser: ^5.4.0 + peerDependenciesMeta: + "@types/node": + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + "@types/node": 20.3.3 + esbuild: 0.17.19 + postcss: 8.4.24 + rollup: 3.26.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vitepress@1.0.0-draft.1(@algolia/client-search@4.17.2)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.6.0): + resolution: + { integrity: sha512-9tNpUu0dwd5w5DNCBlgsmw4HlEl55o8jdOk/tQIxQ2j//0UkEAPT32TL5KRuro1Bp5OM6njZ37s8Y8g26MnooQ== } + engines: { node: ">=14.0.0" } + deprecated: Version no longer supported. Upgrade to @latest + hasBin: true + dependencies: + "@docsearch/css": 3.5.1 + "@docsearch/js": 3.5.1(@algolia/client-search@4.17.2)(react-dom@17.0.2)(react@17.0.2)(search-insights@2.6.0) + "@vitejs/plugin-vue": 2.3.4(vite@2.9.16)(vue@3.2.33) + "@vueuse/core": 8.9.4(vue@3.2.33) + body-scroll-lock: 4.0.0-beta.0 + prismjs: 1.29.0 + vite: 2.9.16 + vue: 3.2.33 + transitivePeerDependencies: + - "@algolia/client-search" + - "@types/react" + - "@vue/composition-api" + - less + - react + - react-dom + - sass + - search-insights + - stylus + dev: true + + /vitest@0.32.4(jsdom@22.1.0): + resolution: + { integrity: sha512-3czFm8RnrsWwIzVDu/Ca48Y/M+qh3vOnF16czJm98Q/AN1y3B6PBsyV8Re91Ty5s7txKNjEhpgtGPcfdbh2MZg== } + engines: { node: ">=v14.18.0" } + hasBin: true + peerDependencies: + "@edge-runtime/vm": "*" + "@vitest/browser": "*" + "@vitest/ui": "*" + happy-dom: "*" + jsdom: "*" + playwright: "*" + safaridriver: "*" + webdriverio: "*" + peerDependenciesMeta: + "@edge-runtime/vm": + optional: true + "@vitest/browser": + optional: true + "@vitest/ui": + optional: true + happy-dom: + optional: true + jsdom: + optional: true + playwright: + optional: true + safaridriver: + optional: true + webdriverio: + optional: true + dependencies: + "@types/chai": 4.3.5 + "@types/chai-subset": 1.3.3 + "@types/node": 20.3.3 + "@vitest/expect": 0.32.4 + "@vitest/runner": 0.32.4 + "@vitest/snapshot": 0.32.4 + "@vitest/spy": 0.32.4 + "@vitest/utils": 0.32.4 + acorn: 8.9.0 + acorn-walk: 8.2.0 + cac: 6.7.14 + chai: 4.3.7 + debug: 4.3.4(supports-color@8.1.1) + jsdom: 22.1.0 + local-pkg: 0.4.3 + magic-string: 0.30.0 + pathe: 1.1.1 + picocolors: 1.0.0 + std-env: 3.3.3 + strip-literal: 1.0.1 + tinybench: 2.5.0 + tinypool: 0.5.0 + vite: 4.3.9(@types/node@20.3.3) + vite-node: 0.32.4(@types/node@20.3.3) + why-is-node-running: 2.2.2 + transitivePeerDependencies: + - less + - sass + - stylus + - sugarss + - supports-color + - terser + dev: true + + /void-elements@2.0.1: + resolution: + { integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung== } + engines: { node: ">=0.10.0" } + dev: true + + /vue-demi@0.14.5(vue@3.2.33): + resolution: + { integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA== } + engines: { node: ">=12" } + hasBin: true + requiresBuild: true + peerDependencies: + "@vue/composition-api": ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + "@vue/composition-api": + optional: true + dependencies: + vue: 3.2.33 + dev: true + + /vue-docgen-api@3.26.0: + resolution: + { integrity: sha512-ujdg4i5ZI/wE46RZQMFzKnDGyhEuPCu+fMA86CAd9EIek/6+OqraSVBm5ZkLrbEd5f8xxdnqMU4yiSGHHeao/Q== } + dependencies: + "@babel/parser": 7.22.5 + "@babel/types": 7.22.5 + ast-types: 0.12.4 + hash-sum: 1.0.2 + lru-cache: 4.1.5 + pug: 2.0.4 + recast: 0.17.6 + ts-map: 1.0.3 + typescript: 3.9.10 + vue-template-compiler: 2.7.14 + dev: true + + /vue-template-compiler@2.7.14: + resolution: + { integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ== } + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + dev: true + + /vue2-ace-editor@0.0.15: + resolution: + { integrity: sha512-e3TR9OGXc71cGpvYcW068lNpRcFt3+OONCC81oxHL/0vwl/V3OgqnNMw2/RRolgQkO/CA5AjqVHWmANWKOtNnQ== } + dependencies: + brace: 0.11.1 + dev: true + + /vue@3.2.33: + resolution: + { integrity: sha512-si1ExAlDUrLSIg/V7D/GgA4twJwfsfgG+t9w10z38HhL/HA07132pUQ2KuwAo8qbCyMJ9e6OqrmWrOCr+jW7ZQ== } + dependencies: + "@vue/compiler-dom": 3.2.33 + "@vue/compiler-sfc": 3.2.33 + "@vue/runtime-dom": 3.2.33 + "@vue/server-renderer": 3.2.33(vue@3.2.33) + "@vue/shared": 3.2.33 + dev: true + + /w3c-xmlserializer@4.0.0: + resolution: + { integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== } + engines: { node: ">=14" } + dependencies: + xml-name-validator: 4.0.0 + dev: true + + /watchpack@2.4.0: + resolution: + { integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== } + engines: { node: ">=10.13.0" } + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + dev: true + + /wcwidth@1.0.1: + resolution: + { integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== } + dependencies: + defaults: 1.0.4 + dev: true + + /webidl-conversions@3.0.1: + resolution: + { integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== } + dev: true + + /webidl-conversions@7.0.0: + resolution: + { integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== } + engines: { node: ">=12" } + dev: true + + /webpack-sources@3.2.3: + resolution: + { integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== } + engines: { node: ">=10.13.0" } + dev: true + + /webpack@5.88.1: + resolution: + { integrity: sha512-FROX3TxQnC/ox4N+3xQoWZzvGXSuscxR32rbzjpXgEzWudJFEJBpdlkkob2ylrv5yzzufD1zph1OoFsLtm6stQ== } + engines: { node: ">=10.13.0" } + hasBin: true + peerDependencies: + webpack-cli: "*" + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + "@types/eslint-scope": 3.7.4 + "@types/estree": 1.0.1 + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/wasm-edit": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + acorn: 8.9.0 + acorn-import-assertions: 1.9.0(acorn@8.9.0) + browserslist: 4.21.9 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.15.0 + es-module-lexer: 1.3.0 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.9(webpack@5.88.1) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - "@swc/core" + - esbuild + - uglify-js + dev: true + + /whatwg-encoding@2.0.0: + resolution: + { integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== } + engines: { node: ">=12" } + dependencies: + iconv-lite: 0.6.3 + dev: true + + /whatwg-mimetype@3.0.0: + resolution: + { integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== } + engines: { node: ">=12" } + dev: true + + /whatwg-url@12.0.1: + resolution: + { integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== } + engines: { node: ">=14" } + dependencies: + tr46: 4.1.1 + webidl-conversions: 7.0.0 + dev: true + + /whatwg-url@5.0.0: + resolution: + { integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== } + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + dev: true + + /which-boxed-primitive@1.0.2: + resolution: + { integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== } + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-module@2.0.1: + resolution: + { integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== } + dev: true + + /which-typed-array@1.1.9: + resolution: + { integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== } + engines: { node: ">= 0.4" } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.10 + dev: true + + /which@1.3.1: + resolution: + { integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== } + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which@2.0.2: + resolution: + { integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== } + engines: { node: ">= 8" } + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /why-is-node-running@2.2.2: + resolution: + { integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA== } + engines: { node: ">=8" } + hasBin: true + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + dev: true + + /window-size@0.1.0: + resolution: + { integrity: sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg== } + engines: { node: ">= 0.8.0" } + dev: true + + /with@5.1.1: + resolution: + { integrity: sha512-uAnSsFGfSpF6DNhBXStvlZILfHJfJu4eUkfbRGk94kGO1Ta7bg6FwfvoOhhyHAJuFbCw+0xk4uJ3u57jLvlCJg== } + dependencies: + acorn: 3.3.0 + acorn-globals: 3.1.0 + dev: true + + /word-wrap@1.2.3: + resolution: + { integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== } + engines: { node: ">=0.10.0" } + dev: true + + /wordwrap@0.0.2: + resolution: + { integrity: sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q== } + engines: { node: ">=0.4.0" } + dev: true + + /wordwrap@1.0.0: + resolution: + { integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== } + dev: true + + /wrap-ansi@6.2.0: + resolution: + { integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== } + engines: { node: ">=8" } + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi@7.0.0: + resolution: + { integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== } + engines: { node: ">=10" } + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi@8.1.0: + resolution: + { integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== } + engines: { node: ">=12" } + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + dev: true + + /wrappy@1.0.2: + resolution: + { integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== } + dev: true + + /write-file-atomic@3.0.3: + resolution: + { integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== } + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + dev: true + + /ws@8.13.0: + resolution: + { integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== } + engines: { node: ">=10.0.0" } + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /xml-name-validator@4.0.0: + resolution: + { integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== } + engines: { node: ">=12" } + dev: true + + /xmlchars@2.2.0: + resolution: + { integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== } + dev: true + + /xmlcreate@2.0.4: + resolution: + { integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg== } + dev: true + + /xtend@4.0.2: + resolution: + { integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== } + engines: { node: ">=0.4" } + dev: true + + /y18n@4.0.3: + resolution: + { integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== } + dev: true + + /y18n@5.0.8: + resolution: + { integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== } + engines: { node: ">=10" } + dev: true + + /yallist@2.1.2: + resolution: + { integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== } + dev: true + + /yallist@3.1.1: + resolution: + { integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== } + dev: true + + /yallist@4.0.0: + resolution: + { integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== } + dev: true + + /yaml@2.3.1: + resolution: + { integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== } + engines: { node: ">= 14" } + dev: true + + /yargs-parser@18.1.3: + resolution: + { integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== } + engines: { node: ">=6" } + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: true + + /yargs-parser@20.2.9: + resolution: + { integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== } + engines: { node: ">=10" } + dev: true + + /yargs-parser@21.1.1: + resolution: + { integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== } + engines: { node: ">=12" } + dev: true + + /yargs@15.4.1: + resolution: + { integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== } + engines: { node: ">=8" } + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 18.1.3 + dev: true + + /yargs@16.2.0: + resolution: + { integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== } + engines: { node: ">=10" } + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 20.2.9 + dev: true + + /yargs@17.7.2: + resolution: + { integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== } + engines: { node: ">=12" } + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: true + + /yargs@3.10.0: + resolution: + { integrity: sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A== } + dependencies: + camelcase: 1.2.1 + cliui: 2.1.0 + decamelize: 1.2.0 + window-size: 0.1.0 + dev: true + + /yauzl@2.10.0: + resolution: + { integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== } + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + dev: true + + /yn@3.1.1: + resolution: + { integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== } + engines: { node: ">=6" } + dev: true + + /yocto-queue@0.1.0: + resolution: + { integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== } + engines: { node: ">=10" } + dev: true + + /yocto-queue@1.0.0: + resolution: + { integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== } + engines: { node: ">=12.20" } + dev: true diff --git a/scripts/jsdoc2md.cjs b/scripts/jsdoc2md.cjs deleted file mode 100644 index 5b1b30a..0000000 --- a/scripts/jsdoc2md.cjs +++ /dev/null @@ -1,4 +0,0 @@ -const jsdoc2md = require("jsdoc-to-markdown"); -const { join } = require("path"); - -jsdoc2md.render({ files: join(__dirname, "src/lib/computedTextWidth.ts") }).then(console.log); diff --git a/scripts/mergeCoverageReport.cjs b/scripts/mergeCoverageReport.cjs new file mode 100644 index 0000000..efc66fc --- /dev/null +++ b/scripts/mergeCoverageReport.cjs @@ -0,0 +1,63 @@ +const { resolve } = require("node:path"); +const { readFileSync, writeFileSync, existsSync, mkdirSync } = require("node:fs"); + +const unitSummaryPath = resolve(process.cwd(), "unit-coverage/coverage-summary.json"); +const e2eSummaryPath = resolve(process.cwd(), "e2e-coverage/coverage-summary.json"); +const unitFinalPath = resolve(process.cwd(), "unit-coverage/coverage-final.json"); +const e2eFinalPath = resolve(process.cwd(), "e2e-coverage/coverage-final.json"); +const coverageDir = resolve(process.cwd(), "coverage/"); + +function main() { + try { + const unitSummary = JSON.parse(readFileSync(unitSummaryPath, "utf-8")); + const e2eSummary = JSON.parse(readFileSync(e2eSummaryPath, "utf-8")); + const summary = { + ...unitSummary, + ...e2eSummary, + total: mergeTotalObj(unitSummary.total, e2eSummary.total), + }; + + const unitFinal = JSON.parse(readFileSync(unitFinalPath, "utf-8")); + const e2eFinal = JSON.parse(readFileSync(e2eFinalPath, "utf-8")); + const final = { ...unitFinal, ...e2eFinal }; + + if (!existsSync(coverageDir)) { + mkdirSync(coverageDir); + } + existsSync(resolve(coverageDir, "coverage-summary.json")); + existsSync(resolve(coverageDir, "coverage-final.json")); + + writeFileSync(resolve(process.cwd(), "coverage/coverage-summary.json"), JSON.stringify(summary)); + writeFileSync(resolve(process.cwd(), "coverage/coverage-final.json"), JSON.stringify(final)); + } catch (e) { + console.error(e); + } +} + +function mergeTotalObj(...totalObjs) { + const totalObj = {}; + totalObjs.forEach((obj) => { + Object.entries(obj).forEach(([key, value]) => { + if (totalObj[key]) { + Object.entries(value).forEach(([childKey, childValue]) => { + if (childKey === "pct") return; + const preNum = totalObj[key][childKey] ?? 0; + totalObj[key][childKey] = preNum + childValue; + }); + } else { + totalObj[key] = { ...value, pct: undefined }; + } + }); + }); + Object.keys(totalObj).forEach((key) => { + if (totalObj[key].total === 0) { + totalObj[key].pct = 0; + return; + } + totalObj[key].pct = Number( + (((totalObj[key].covered - totalObj[key].skipped) / totalObj[key].total) * 100).toFixed(2) + ); + }); + return totalObj; +} +main(); diff --git a/scripts/preinstall.cjs b/scripts/preinstall.cjs new file mode 100644 index 0000000..a61e755 --- /dev/null +++ b/scripts/preinstall.cjs @@ -0,0 +1,9 @@ +if (!/corepack/.test(process.env.COREPACK_ROOT || "")) { + console.warn(`\x1b[43m 检测到 corepack 未开启,建议运行以下命令开启 corepack \x1b[0m`); + console.log("\x1b[42m corepack enable \x1b[0m"); +} + +if (!/pnpm/.test(process.env.npm_execpath || "")) { + console.warn(`\n\x1b[41m 此仓库要求使用 pnpm 作为包管理器!请使用 corepack 或手动安装 pnpm! \x1b[0m\n`); + process.exit(1); +} diff --git a/scripts/publish.sh b/scripts/publish.sh index 9511473..2880a20 100644 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -2,9 +2,9 @@ set -e -yarn --frozen-lockfile +pnpm i --frozen-lockfile -yarn build +pnpm run build npm publish --registry=https://registry.npmjs.com/ diff --git a/src/lib/CoordinateUtils.ts b/src/lib/CoordinateUtils.ts index d5d599f..80a77d6 100644 --- a/src/lib/CoordinateUtils.ts +++ b/src/lib/CoordinateUtils.ts @@ -62,7 +62,7 @@ export class CoordinateUtils { * @returns {Coordinate} 坐标:[经度,纬度] * * @example - * cnUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); + * niUtils.CoordinateUtils.transformBD09ToGCJ02(coordinate); */ static transformBD09ToGCJ02(coordinate: Coordinate) { const x = coordinate.lng - 0.0065; @@ -82,7 +82,7 @@ export class CoordinateUtils { * @return {Coordinate} 百度坐标:[经度,纬度] * * @example - * cnUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); + * niUtils.CoordinateUtils.transformGCJ02ToBD09(coordinate); */ static transformGCJ02ToBD09(coordinate: Coordinate) { const z = @@ -102,7 +102,7 @@ export class CoordinateUtils { * @return {Coordinate} WGS84坐标:[经度,纬度] * * @example - * cnUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); + * niUtils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); */ static simpleTransformGCJ02ToWGS84(coordinate: Coordinate) { if (outOfChina(coordinate)) { @@ -129,7 +129,7 @@ export class CoordinateUtils { * @param {Coordinate} gcj GCJ02经纬度 * @return {Coordinate} WGS84坐标:[经度,纬度] * @example - * cnUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); + * niUtils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); */ static transformGCJ02ToWGS84(gcj: Coordinate) { // 计算输入 gcj 坐标与将其计算为84坐标的偏差 @@ -156,7 +156,7 @@ export class CoordinateUtils { * @return {Coordinate} GCJ02 坐标:[经度,纬度] * * @example - * cnUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); + * niUtils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); */ static transformWGS84ToGCJ02(coordinate: Coordinate) { if (outOfChina(coordinate)) { @@ -184,7 +184,7 @@ export class CoordinateUtils { * @return {Coordinate} WGS84 坐标:[经度,纬度] * * @example - * cnUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); + * niUtils.CoordinateUtils.transformBD09ToWGS84(coordinate); */ static transformBD09ToWGS84(coordinate: Coordinate) { const gcj02 = CoordinateUtils.transformBD09ToGCJ02(coordinate); @@ -200,7 +200,7 @@ export class CoordinateUtils { * @return {Coordinate} BD09 坐标:[经度,纬度] * * @example - * cnUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); + * niUtils.CoordinateUtils.transformWGS84ToBD09(coordinate); */ static transformWGS84ToBD09(coordinate: Coordinate) { const gcj02 = CoordinateUtils.transformWGS84ToGCJ02(coordinate); diff --git a/src/lib/computedTextWidth.ts b/src/lib/computedTextWidth.ts index 7c688b1..5829fae 100644 --- a/src/lib/computedTextWidth.ts +++ b/src/lib/computedTextWidth.ts @@ -8,8 +8,8 @@ let canvas: HTMLCanvasElement; */ export function computedTextWidth(text: string, font: string) { canvas = canvas ?? document.createElement("canvas"); - const context = canvas.getContext("2d"); - context!.font = font; - const metrics = context!.measureText(text); + const context = canvas.getContext("2d") as CanvasRenderingContext2D; + context.font = font; + const metrics = context.measureText(text); return metrics.width; } diff --git a/src/lib/getStylePropertyValue.ts b/src/lib/getStylePropertyValue.ts new file mode 100644 index 0000000..5b9674d --- /dev/null +++ b/src/lib/getStylePropertyValue.ts @@ -0,0 +1,9 @@ +/** + * 获取元素样式的值 + * @param element - 元素 + * @param property - 样式名 + * @returns string - 样式的值,样式不存在时返回空字符串 + */ +export function getStylePropertyValue(element: HTMLElement, property: string) { + return globalThis.getComputedStyle?.(element, null).getPropertyValue(property) ?? ""; +} diff --git a/src/lib/load.ts b/src/lib/load.ts index e4c1398..642ea58 100644 --- a/src/lib/load.ts +++ b/src/lib/load.ts @@ -1,86 +1,83 @@ /** - * 异步加载js文件 + * @description: 异步加载script + * @param {string} url 脚本地址 + * @return {Promise} */ -export const asyncLoadJs = (() => { - // 正在加载或加载成功的存入此Map中 - const documentMap = new Map(); +export function loadScript(url: string) { + return new Promise(function (resolve, reject) { + const script = document.createElement("script"); + const headTag = document.getElementsByTagName("head")[0]; + script.type = "text/javascript"; + script.onload = function () { + resolve({ + msg: "success", + url: url, + }); + }; - return (url: string, crossOrigin?: string, document = globalThis.document) => { - let loaded = documentMap.get(document); - if (!loaded) { - loaded = new Map(); - documentMap.set(document, loaded); - } + script.onerror = function (error) { + reject({ + error, + msg: "error", + }); + }; - // 正在加载或已经加载成功的,直接返回 - if (loaded.get(url)) return loaded.get(url); - - const load = new Promise((resolve, reject) => { - const script = document.createElement("script"); - script.type = "text/javascript"; - if (crossOrigin) { - script.crossOrigin = crossOrigin; - } - script.src = url; - document.body.appendChild(script); - script.onload = () => { - resolve(); - }; - script.onerror = () => { - reject(new Error("加载失败")); - }; - setTimeout(() => { - reject(new Error("timeout")); - }, 60 * 1000); - }).catch((err) => { - // 加载失败的,从map中移除,第二次加载时,可以再次执行加载 - loaded.delete(url); - throw err; - }); - - loaded.set(url, load); - return loaded.get(url); - }; -})(); + script.src = url; + headTag.appendChild(script); + }); +} /** - * 异步加载css文件 + * @description: 异步加载script + * @param {Array} urlArray 脚本地址数组 + * @return {Promise} */ -export const asyncLoadCss = (() => { - // 正在加载或加载成功的存入此Map中 - const documentMap = new Map(); +export function loadScripts(urlArray: Array) { + const scriptArr = []; + for (let i = 0; i < urlArray.length; i++) { + scriptArr.push(loadScript(urlArray[i])); + } + return Promise.all(scriptArr); +} - return (url: string, document = globalThis.document) => { - let loaded = documentMap.get(document); - if (!loaded) { - loaded = new Map(); - documentMap.set(document, loaded); - } +/** + * @description: 异步加载style + * @param {string} url 样式表地址 + * @return {Promise} + */ +export function loadStyle(url: string) { + return new Promise(function (resolve, reject) { + const style = document.createElement("link"); + const headTag = document.getElementsByTagName("head")[0]; + style.rel = "stylesheet"; + style.onload = function () { + resolve({ + msg: "success", + url: url, + }); + }; - // 正在加载或已经加载成功的,直接返回 - if (loaded.get(url)) return loaded.get(url); + style.onerror = function (error) { + reject({ + error, + msg: "error", + }); + }; - const load = new Promise((resolve, reject) => { - const node = document.createElement("link"); - node.rel = "stylesheet"; - node.href = url; - document.head.appendChild(node); - node.onload = () => { - resolve(); - }; - node.onerror = () => { - reject(new Error("加载失败")); - }; - setTimeout(() => { - reject(new Error("timeout")); - }, 60 * 1000); - }).catch((err) => { - // 加载失败的,从map中移除,第二次加载时,可以再次执行加载 - loaded.delete(url); - throw err; - }); + style.href = url; + headTag.appendChild(style); + }); +} - loaded.set(url, load); - return loaded.get(url); - }; -})(); +/** + * @description: 异步加载style + * @param {Array} urlArray 样式表地址数组 + * @return {Promise} + */ +export function loadStyles(urlArray: Array) { + const styleArr = []; + for (let i = 0; i < urlArray.length; i++) { + styleArr.push(loadStyle(urlArray[i])); + } + return Promise.all(styleArr); +} diff --git a/tests/e2e/lib/computedTextWidth.spec.ts b/tests/e2e/lib/computedTextWidth.spec.ts new file mode 100644 index 0000000..076e730 --- /dev/null +++ b/tests/e2e/lib/computedTextWidth.spec.ts @@ -0,0 +1,15 @@ +import { computedTextWidth } from "../../../src/lib/computedTextWidth"; +import { getStylePropertyValue } from "../../../src/lib/getStylePropertyValue"; + +describe("computedTextWidth", () => { + it("计算文本宽度", () => { + cy.window().then((win) => { + const text = "测试文字"; + const font = getStylePropertyValue(win.document.body, "font"); + + const textWidth = computedTextWidth(text, font); + console.log("计算后的文字宽度", textWidth); + expect(textWidth).to.be.above(0); + }); + }); +}); diff --git a/tests/e2e/lib/getStylePropertyValue.spec.ts b/tests/e2e/lib/getStylePropertyValue.spec.ts new file mode 100644 index 0000000..3c38c63 --- /dev/null +++ b/tests/e2e/lib/getStylePropertyValue.spec.ts @@ -0,0 +1,13 @@ +import { getStylePropertyValue } from "../../../src/lib/getStylePropertyValue"; + +describe("getStylePropertyValue", () => { + it("获取元素样式的值", () => { + const targetSize = "16px"; + cy.get("body") + .invoke("css", "font-size", targetSize) + .then((el) => { + const body = el[0] as unknown as HTMLBodyElement; + expect(body.style.fontSize).to.be.equal(getStylePropertyValue(body, "font-size")); + }); + }); +}); diff --git a/tests/e2e/plugins/index.ts b/tests/e2e/plugins/index.ts new file mode 100644 index 0000000..abe237e --- /dev/null +++ b/tests/e2e/plugins/index.ts @@ -0,0 +1,11 @@ +import vitePreprocessor from "cypress-vite"; +import coverage from "@cypress/code-coverage/task"; + +/** + * @type {Cypress.PluginConfig} + */ +export function setupNodeEvents(on, config) { + coverage(on, config); + on("file:preprocessor", vitePreprocessor()); + return config; +} diff --git a/tests/e2e/support/index.ts b/tests/e2e/support/index.ts new file mode 100644 index 0000000..8acc4ee --- /dev/null +++ b/tests/e2e/support/index.ts @@ -0,0 +1,16 @@ +// *********************************************************** +// This example support/index.js is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +import "@cypress/code-coverage/support"; diff --git a/tests/e2e/tsconfig.json b/tests/e2e/tsconfig.json new file mode 100644 index 0000000..49e6566 --- /dev/null +++ b/tests/e2e/tsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "target": "ESNext", + "lib": ["ESNext", "dom"], + "types": ["cypress", "node"], + "moduleResolution": "node" + }, + "include": ["**/*.ts", "**/*.d.ts", "node_modules/cypress"] +} diff --git a/tests/unit/lib/Coordinate.spec.ts b/tests/unit/lib/Coordinate.spec.ts new file mode 100644 index 0000000..26fc782 --- /dev/null +++ b/tests/unit/lib/Coordinate.spec.ts @@ -0,0 +1,21 @@ +import { describe, expect, test } from "vitest"; +import * as utils from "../../../src"; + +describe("Coordinate", () => { + const coordinate = new utils.Coordinate(116.404, 39.915); + + test("经度", () => { + expect(coordinate.getLng()).toBe(116.404); + }); + + test("纬度", () => { + expect(coordinate.getLat()).toBe(39.915); + }); + + test("设置", () => { + coordinate.setLng(116.58); + coordinate.setLat(39.2); + const lonlat = coordinate.toArray(); + expect(lonlat).toStrictEqual([116.58, 39.2]); + }); +}); diff --git a/tests/unit/lib/CoordinateUtils.spec.ts b/tests/unit/lib/CoordinateUtils.spec.ts new file mode 100644 index 0000000..29af84c --- /dev/null +++ b/tests/unit/lib/CoordinateUtils.spec.ts @@ -0,0 +1,67 @@ +import { describe, expect, test } from "vitest"; +import * as utils from "../../../src"; + +describe("CoordinateUtils", () => { + const coordinateUtils = new utils.CoordinateUtils(); + const coordinate = new utils.Coordinate(116.404, 39.915); + test("09转02", () => { + const lonlat = utils.CoordinateUtils.transformBD09ToGCJ02(coordinate); + expect(lonlat).toEqual({ + lng: 116.39762729119315, + lat: 39.90865673957631, + }); + }); + test("02转09", () => { + const lonlat = utils.CoordinateUtils.transformGCJ02ToBD09(coordinate); + expect(lonlat).toEqual({ + lng: 116.41036949371029, + lat: 39.92133699351022, + }); + }); + test("简单02转84", () => { + const lonlat = utils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); + expect(lonlat).toEqual({ + lng: 116.39775550083061, + lat: 39.91359571849836, + }); + }); + test("02转84", () => { + const lonlat = utils.CoordinateUtils.transformGCJ02ToWGS84(coordinate); + expect(lonlat).toEqual({ + lng: 116.3977557546871, + lat: 39.91359623568433, + }); + }); + test("84转02", () => { + const lonlat = utils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); + expect(lonlat).toEqual({ + lng: 116.41024449916938, + lat: 39.91640428150164, + }); + }); + test("09转84", () => { + const lonlat = utils.CoordinateUtils.transformBD09ToWGS84(coordinate); + expect(lonlat).toEqual({ + lng: 116.39138609744414, + lat: 39.907255434216694, + }); + }); + test("84转09", () => { + const lonlat = utils.CoordinateUtils.transformWGS84ToBD09(coordinate); + expect(lonlat).toEqual({ + lng: 116.41662724378733, + lat: 39.922699552216216, + }); + }); +}); +describe("CoordinateUtils-国外坐标", () => { + const coordinate = new utils.Coordinate(-77.02, -38.54); + test("02转84", () => { + const lonlat = utils.CoordinateUtils.simpleTransformGCJ02ToWGS84(coordinate); + expect(lonlat).toEqual({ lng: -77.02, lat: -38.54 }); + }); + test("84转02", () => { + const lonlat = utils.CoordinateUtils.transformWGS84ToGCJ02(coordinate); + expect(lonlat).toEqual({ lng: -77.02, lat: -38.54 }); + }); +}); diff --git a/tests/unit/lib/animation.spec.ts b/tests/unit/lib/animation.spec.ts new file mode 100644 index 0000000..ee20cc9 --- /dev/null +++ b/tests/unit/lib/animation.spec.ts @@ -0,0 +1,34 @@ +/** + * @vitest-environment jsdom + */ +import { describe, expect, test } from "vitest"; + +import * as utils from "../../../src"; +import dayjs from "dayjs"; + +describe("animation", () => { + let progress = 0; + function render() { + progress += 1; // 修改图像的位置 + if (progress < 100) { + // 在动画没有结束前,递归渲染 + utils.requestAnimationFrame(render); + } + } + const handlerId = utils.requestAnimationFrame(render); + test("执行动画", () => { + expect(handlerId).toBe(1); + }); + + test("休眠", async () => { + const date = dayjs(new Date()).unix(); + await utils.sleep(1000); + const newDate = dayjs(new Date()).unix(); + expect(newDate - date).toBe(1); + }); + + test("取消动画", () => { + utils.cancelAnimationFrame(handlerId); + expect(handlerId).toBe(1); + }); +}); diff --git a/tests/unit/lib/browser.spec.ts b/tests/unit/lib/browser.spec.ts new file mode 100644 index 0000000..6b67dd6 --- /dev/null +++ b/tests/unit/lib/browser.spec.ts @@ -0,0 +1,13 @@ +/** + * @vitest-environment jsdom + */ +import { describe, expect, test } from "vitest"; + +import * as utils from "../../../src"; + +describe("getBrowserInfo", () => { + const browserInfo = utils.getBrowserInfo(); + test("默认浏览器信息", () => { + expect(browserInfo.Actual_Name).toBe("Netscape"); + }); +}); diff --git a/tests/unit/lib/common.spec.ts b/tests/unit/lib/common.spec.ts index 2ce908a..ed46bb9 100644 --- a/tests/unit/lib/common.spec.ts +++ b/tests/unit/lib/common.spec.ts @@ -47,3 +47,20 @@ describe("filterXSS", () => { expect(value).toBe("'div'"span""); }); }); + +describe("isNotEmpty", () => { + test("null", () => { + const value = utils.isNotEmpty(null); + expect(value).toBe(false); + }); + + test("", () => { + const value = utils.isNotEmpty(""); + expect(value).toBe(false); + }); + + test("有值", () => { + const value = utils.isNotEmpty("111"); + expect(value).toBe(true); + }); +}); diff --git a/tests/unit/lib/cookie.spec.ts b/tests/unit/lib/cookie.spec.ts index d045684..8e0b23a 100644 --- a/tests/unit/lib/cookie.spec.ts +++ b/tests/unit/lib/cookie.spec.ts @@ -1,15 +1,22 @@ +/** + * @vitest-environment jsdom + */ import { describe, expect, test } from "vitest"; import * as utils from "../../../src"; +const cookie = utils.setCookie("userName", "admin"); + +describe("setCookie", () => { + test("正常", () => { + expect(cookie).toBe("userName=admin; path=/"); + }); +}); + describe("getCookie", () => { test("正常", () => { - const cookie = utils.setCookie("userName", "admin"); const value = utils.getCookie("userName"); - console.log(cookie); - // expect(value).toBe("admin"); - // FIXME: 猜测 cookie 无法在测试环境中生效 - expect(value).toBe(undefined); + expect(value).toBe("admin"); }); }); @@ -17,11 +24,14 @@ describe("getAllCookies", () => { test("正常", () => { utils.setCookie("userName", "admin"); const value = utils.getAllCookies(); - console.log(value); - // expect(value).toBe({ - // userName: "admin", - // }); - // FIXME: 猜测 cookie 无法在测试环境中生效 + expect(value.userName).toBe("admin"); + }); +}); + +describe("removeCookie", () => { + test("正常", () => { + utils.removeCookie("userName"); + const value = utils.getCookie("userName"); expect(value).toBe(undefined); }); }); diff --git a/tests/unit/lib/date.spec.ts b/tests/unit/lib/date.spec.ts index ae6b36b..b48243b 100644 --- a/tests/unit/lib/date.spec.ts +++ b/tests/unit/lib/date.spec.ts @@ -21,6 +21,10 @@ describe("formatDatetime", () => { test("v是UTC字符串", () => { expect(utils.formatDatetime(date.toUTCString())).toMatch(dateValue); }); + + test("v是空对象", () => { + expect(utils.formatDatetime("")).toBe(""); + }); }); describe("formatTimestamp", () => { diff --git a/tests/unit/lib/dom.spec.ts b/tests/unit/lib/dom.spec.ts new file mode 100644 index 0000000..4cf57b1 --- /dev/null +++ b/tests/unit/lib/dom.spec.ts @@ -0,0 +1,46 @@ +/** + * @vitest-environment jsdom + */ +import { describe, expect, test } from "vitest"; + +import * as utils from "../../../src"; + +describe("dom", () => { + const dom = utils.createDom("DIV", "test", "height: 20px"); + utils.getDocument().body.appendChild(dom); + test("dom 是否为空", () => { + expect(dom).not.toBeNull(); + }); + + test("dom正常", () => { + const isSuccess = dom.tagName === "DIV" && dom.className === "test" && dom.style.cssText === "height: 20px;"; + expect(isSuccess).toBeTruthy(); + }); + + const childDom = utils.createDom("span", "test-span", "font-size: 16px"); + dom.appendChild(childDom); + test("removeDom", () => { + utils.removeDom(childDom); + expect(dom.getElementsByClassName("test-span")).not.toBeNull(); + }); + + test("addClassName", () => { + utils.addClassName(dom, "add"); + expect(dom.className).toBe("test add"); + }); + + test("removeClassName", () => { + utils.removeClassName(dom, "add"); + expect(dom.className).toBe("test"); + }); + + test("removeClassNameByClassName", () => { + utils.removeClassNameByClassName("test", utils.getDocument()); + expect(dom.className).toBe(""); + }); + + test("injectStyle", () => { + const styleEl = utils.injectStyle("width: 100px;", utils.getDocument()); + expect(styleEl.innerHTML).toBe("width: 100px;"); + }); +}); diff --git a/tests/unit/lib/flex.spec.ts b/tests/unit/lib/flex.spec.ts new file mode 100644 index 0000000..efcf320 --- /dev/null +++ b/tests/unit/lib/flex.spec.ts @@ -0,0 +1,13 @@ +/** + * @vitest-environment jsdom + */ +import { describe, expect, test } from "vitest"; + +import * as utils from "../../../src"; + +describe("getScreenScaleSize", () => { + const screenSize = utils.getScreenScaleSize(1920, 2); + test("默认浏览器信息", () => { + expect(screenSize).toBe(0); + }); +}); diff --git a/tests/unit/lib/getJson.spec.ts b/tests/unit/lib/getJson.spec.ts new file mode 100644 index 0000000..bbd2972 --- /dev/null +++ b/tests/unit/lib/getJson.spec.ts @@ -0,0 +1,16 @@ +/** + * @vitest-environment jsdom + */ +import { describe, expect, test } from "vitest"; + +import * as utils from "../../../src"; + +describe("getJson", () => { + test("结果", () => { + let result = null; + utils.getJson("https://service.minedata.cn/map/solu/style/11001", (res) => { + result = JSON.stringify(res); + }); + expect(result).toBe(null); + }); +}); diff --git a/tests/unit/lib/uuid.spec.ts b/tests/unit/lib/uuid.spec.ts index 0bb4597..941d5ee 100644 --- a/tests/unit/lib/uuid.spec.ts +++ b/tests/unit/lib/uuid.spec.ts @@ -53,3 +53,18 @@ describe("getUuidDigit", () => { expect(reg.test(value)).toBe(true); }); }); + +describe("加入规则", () => { + const value = utils.getUuidDigit(4, { + num: 2, + letter: "12", + }); + test("长度正常", () => { + expect(value.length).toBe(6); + }); + + test("值正常", () => { + const val = value.substring(2, 4); + expect(val).toBe("12"); + }); +}); diff --git a/tsconfig.json b/tsconfig.json index c291db0..86b6e28 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,6 @@ "types": ["node"], "baseUrl": "./" }, - "exclude": ["dist", "node_modules"] + "exclude": ["dist", "node_modules"], + "include": ["src/**/*.ts", "./cypress.d.ts"] } diff --git a/vite.config.ts b/vite.config.ts index fa43e93..ff339ef 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,9 +1,28 @@ import { defineConfig } from "vite"; +import IstanbulPlugin from "vite-plugin-istanbul"; import banner from "vite-plugin-banner"; import bannerContent from "./build/banner"; import pkg from "./package.json"; +const plugins = [ + banner({ + content: bannerContent, + }), +]; +if (process.env.CYPRESS === "true") { + plugins.push( + IstanbulPlugin({ + include: "src/**/*", + exclude: ["dist", ".nyc_output", "node_modules", "coverage", "tests"], + requireEnv: false, + forceBuildInstrument: true, + cypress: true, + checkProd: true, + }) + ); +} + export default defineConfig({ build: { sourcemap: false, @@ -11,7 +30,7 @@ export default defineConfig({ lib: { entry: "src/index.ts", - name: "cnUtils", + name: "niUtils", formats: ["es", "umd"], fileName: (format) => `index${format === "umd" ? "" : "." + format}.js`, }, @@ -19,7 +38,8 @@ export default defineConfig({ rollupOptions: { // 确保外部化处理那些你不想打包进库的依赖 external(id: string) { - return Object.keys(pkg.dependencies).some((k) => new RegExp(`^${k}`).test(id)); + // @ts-ignore + return Object.keys(pkg.dependencies ?? {}).some((k) => new RegExp(`^${k}`).test(id)); }, }, }, @@ -30,15 +50,5 @@ export default defineConfig({ }, }, }, - plugins: [ - banner({ - content: bannerContent, - }), - ], - test: { - coverage: { - // you can include other reporters, but 'json-summary' is required, json is recommended - reporter: ["text", "json-summary", "json"], - }, - }, + plugins, }); diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..37ef4fd --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,16 @@ +import { defineConfig, mergeConfig, configDefaults } from "vitest/config"; +import viteConfig from "./vite.config"; + +export default mergeConfig( + viteConfig, + defineConfig({ + test: { + coverage: { + // you can include other reporters, but 'json-summary' is required, json is recommended + reporter: ["text", "html", "clover", "json-summary", "json"], + reportsDirectory: "unit-coverage", + }, + exclude: [...configDefaults.exclude, "**/tests/e2e/**/?(*.){test,spec}.?(c|m)[jt]s?(x)"], + }, + }) +); diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index bce4573..0000000 --- a/yarn.lock +++ /dev/null @@ -1,8342 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@algolia/autocomplete-core@1.9.2": - version "1.9.2" - resolved "https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.2.tgz#1c9ffcfac7fc4733fe97356247b25d9d7a83538c" - integrity sha512-hkG80c9kx9ClVAEcUJbTd2ziVC713x9Bji9Ty4XJfKXlxlsx3iXsoNhAwfeR4ulzIUg7OE5gez0UU1zVDdG7kg== - dependencies: - "@algolia/autocomplete-plugin-algolia-insights" "1.9.2" - "@algolia/autocomplete-shared" "1.9.2" - -"@algolia/autocomplete-plugin-algolia-insights@1.9.2": - version "1.9.2" - resolved "https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.2.tgz#b4672d5662acc2d0a0547d14dfbdcc70c17625de" - integrity sha512-2LVsf4W66hVHQ3Ua/8k15oPlxjELCztbAkQm/hP42Sw+GLkHAdY1vaVRYziaWq64+Oljfg6FKkZHCdgXH+CGIA== - dependencies: - "@algolia/autocomplete-shared" "1.9.2" - -"@algolia/autocomplete-preset-algolia@1.9.2": - version "1.9.2" - resolved "https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.2.tgz#a31fc9a88800ee7312cd177c738e9e4c0e0f78e8" - integrity sha512-pqgIm2GNqtCT59Y1ICctIPrYTi34+wNPiNWEclD/yDzp5uDUUsyGe5XrUjCNyQRTKonAlmYxoaEHOn8FWgmBHA== - dependencies: - "@algolia/autocomplete-shared" "1.9.2" - -"@algolia/autocomplete-shared@1.9.2": - version "1.9.2" - resolved "https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.2.tgz#b5b909377439c45774cfb91947ad8e6ebd4652c1" - integrity sha512-XxX6YDn+7LG+SmdpXEOnj7fc3TjiVpQ0CbGhjLwrd2tYr6LVY2D4Iiu/iuYJ4shvVDWWnpwArSk0uIWC/8OPUA== - -"@algolia/cache-browser-local-storage@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.17.1.tgz#b2f204a436893b4856165670ec4dda12cdc055b8" - integrity sha512-e91Jpu93X3t3mVdQwF3ZDjSFMFIfzSc+I76G4EX8nl9RYXgqcjframoL05VTjcD2YCsI18RIHAWVCBoCXVZnrw== - dependencies: - "@algolia/cache-common" "4.17.1" - -"@algolia/cache-common@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.17.1.tgz#f4877f6fdc594a29ce6d032fae96f0517bf80b1d" - integrity sha512-fvi1WT8aSiGAKrcTw8Qg3RYgcwW8GZMHcqEm4AyDBEy72JZlFBSY80cTQ75MslINjCHXLDT+9EN8AGI9WVY7uA== - -"@algolia/cache-in-memory@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/cache-in-memory/-/cache-in-memory-4.17.1.tgz#7b3ab5f6de897677d92db549f8228966c62966d5" - integrity sha512-NbBt6eBWlsXc5geSpfPRC5dkIB/0Ptthw8r0yM5Z7D3sPlYdnTZSO9y9XWXIptRMwmZe4cM8iBMN8y0tzbcBkA== - dependencies: - "@algolia/cache-common" "4.17.1" - -"@algolia/client-account@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/client-account/-/client-account-4.17.1.tgz#81747c0828d2688af4a98bbed3d3b0aa7daa25f6" - integrity sha512-3rL/6ofJvyL+q8TiWM3qoM9tig+SY4gB1Vbsj+UeJPnJm8Khm+7OS+r+mFraqR6pTehYqN8yGYoE7x4diEn4aA== - dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/transporter" "4.17.1" - -"@algolia/client-analytics@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-4.17.1.tgz#d6ecc75fd792fb1dee67c01497098ce175f1c4c9" - integrity sha512-Bepr2w249vODqeBtM7i++tPmUsQ9B81aupUGbDWmjA/FX+jzQqOdhW8w1CFO5kWViNKTbz2WBIJ9U3x8hOa4bA== - dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" - -"@algolia/client-common@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.17.1.tgz#a8b561c1e3a19cce2c24e9a49bd822477c2f56d9" - integrity sha512-+r7kg4EgbFnGsDnoGSVNtXZO8xvZ0vzf1WAOV7sqV9PMf1bp6cpJP/3IuPrSk4t5w2KVl+pC8jfTM7HcFlfBEQ== - dependencies: - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" - -"@algolia/client-personalization@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-4.17.1.tgz#26b2c8e13e9b69afd4e2c17879f538d408b708f3" - integrity sha512-gJku9DG/THJpfsSlG/az0a3QIn+VVff9kKh8PG8+7ZfxOHS+C+Y5YSeZVsC+c2cfoKLPo3CuHIiJ/p86erR3bA== - dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" - -"@algolia/client-search@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.17.1.tgz#defaf56083e613fb593a9a49837b6aa551ed38eb" - integrity sha512-Q5YfT5gVkx60PZDQBqp/zH9aUbBdC7HVvxupiHUgnCKqRQsRZjOhLest7AI6FahepuZLBZS62COrO7v+JvKY7w== - dependencies: - "@algolia/client-common" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/transporter" "4.17.1" - -"@algolia/logger-common@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.17.1.tgz#fe50f67a86276cebdfd8337bc5d925f7a3bf9e43" - integrity sha512-Us28Ot+fLEmX9M96sa65VZ8EyEEzhYPxfhV9aQyKDjfXbUdJlJxKt6wZpoEg9RAPSdO8IjK9nmuW2P8au3rRsg== - -"@algolia/logger-console@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/logger-console/-/logger-console-4.17.1.tgz#d9d6dc0bb6ad1321b66163491cc4618d27beb73d" - integrity sha512-iKGQTpOjHiE64W3JIOu6dmDvn+AfYIElI9jf/Nt6umRPmP/JI9rK+OHUoW4pKrBtdG0DPd62ppeNXzSnLxY6/g== - dependencies: - "@algolia/logger-common" "4.17.1" - -"@algolia/requester-browser-xhr@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.17.1.tgz#8be50e4196cd9d1ec311970845a42f2aee35860e" - integrity sha512-W5mGfGDsyfVR+r4pUFrYLGBEM18gs38+GNt5PE5uPULy4uVTSnnVSkJkWeRkmLBk9zEZ/Nld8m4zavK6dtEuYg== - dependencies: - "@algolia/requester-common" "4.17.1" - -"@algolia/requester-common@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.17.1.tgz#3b3912c8df1e05f0fd49f4c9a7caa3fe45d2d995" - integrity sha512-HggXdjvVFQR0I5l7hM5WdHgQ1tqcRWeyXZz8apQ7zPWZhirmY2E9D6LVhDh/UnWQNEm7nBtM+eMFONJ3bZccIQ== - -"@algolia/requester-node-http@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-4.17.1.tgz#f4eeee985833ad2b51ac9ff757be5c1a786ff80a" - integrity sha512-NzFWecXT6d0PPsQY9L+/qoK2deF74OLcpvqCH+Vh3mh+QzPsFafcBExdguAjZsAWDn1R6JEeFW7/fo/p0SE57w== - dependencies: - "@algolia/requester-common" "4.17.1" - -"@algolia/transporter@4.17.1": - version "4.17.1" - resolved "https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.17.1.tgz#9508e08e984e110603ec66a19362017c1df59e05" - integrity sha512-ZM+qhX47Vh46mWH8/U9ihvy98HdTYpYQDSlqBD7IbiUbbyoCMke+qmdSX2MGhR2FCcXBSxejsJKKVAfbpaLVgg== - dependencies: - "@algolia/cache-common" "4.17.1" - "@algolia/logger-common" "4.17.1" - "@algolia/requester-common" "4.17.1" - -"@ampproject/remapping@^2.2.0", "@ampproject/remapping@^2.2.1": - version "2.2.1" - resolved "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" - integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4": - version "7.21.4" - resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/compat-data@^7.21.5": - version "7.21.7" - resolved "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" - integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== - -"@babel/core@^7.7.5": - version "7.21.8" - resolved "https://registry.npmmirror.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" - integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== - dependencies: - "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-compilation-targets" "^7.21.5" - "@babel/helper-module-transforms" "^7.21.5" - "@babel/helpers" "^7.21.5" - "@babel/parser" "^7.21.8" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.2" - semver "^6.3.0" - -"@babel/generator@^7.12.11", "@babel/generator@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" - integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== - dependencies: - "@babel/types" "^7.21.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/helper-compilation-targets@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" - integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== - dependencies: - "@babel/compat-data" "^7.21.5" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" - lru-cache "^5.1.1" - semver "^6.3.0" - -"@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== - -"@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-module-imports@^7.21.4": - version "7.21.4" - resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" - integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== - dependencies: - "@babel/types" "^7.21.4" - -"@babel/helper-module-transforms@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" - integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== - dependencies: - "@babel/helper-environment-visitor" "^7.21.5" - "@babel/helper-module-imports" "^7.21.4" - "@babel/helper-simple-access" "^7.21.5" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.19.1" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/helper-simple-access@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" - integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== - dependencies: - "@babel/types" "^7.21.5" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-string-parser@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" - integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== - -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== - -"@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== - -"@babel/helpers@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" - integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== - dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.5" - "@babel/types" "^7.21.5" - -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.2.3", "@babel/parser@^7.20.15", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8": - version "7.21.8" - resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" - integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== - -"@babel/parser@^7.21.3": - version "7.21.9" - resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.21.9.tgz#ab18ea3b85b4bc33ba98a8d4c2032c557d23cf14" - integrity sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g== - -"@babel/runtime@^7.7.6": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" - integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== - dependencies: - regenerator-runtime "^0.13.11" - -"@babel/template@^7.20.7": - version "7.20.7" - resolved "https://registry.npmmirror.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/traverse@^7.1.6", "@babel/traverse@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" - integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.21.5" - "@babel/helper-environment-visitor" "^7.21.5" - "@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.5" - "@babel/types" "^7.21.5" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.2.0", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5": - version "7.21.5" - resolved "https://registry.npmmirror.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" - integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== - dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@colors/colors@1.5.0": - version "1.5.0" - resolved "https://registry.npmmirror.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" - integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== - -"@commitlint/cli@^17.6.5": - version "17.6.5" - resolved "https://registry.npmmirror.com/@commitlint/cli/-/cli-17.6.5.tgz#3a8abd6499f9d4aeafe3bf9201338ccb868a14b9" - integrity sha512-3PQrWr/uo6lzF5k7n5QuosCYnzaxP9qGBp3jhWP0Vmsa7XA6wrl9ccPqfQyXpSbQE3zBROVO3TDqgPKe4tfmLQ== - dependencies: - "@commitlint/format" "^17.4.4" - "@commitlint/lint" "^17.6.5" - "@commitlint/load" "^17.5.0" - "@commitlint/read" "^17.5.1" - "@commitlint/types" "^17.4.4" - execa "^5.0.0" - lodash.isfunction "^3.0.9" - resolve-from "5.0.0" - resolve-global "1.0.0" - yargs "^17.0.0" - -"@commitlint/config-conventional@^17.6.5": - version "17.6.5" - resolved "https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-17.6.5.tgz#a8ec286e634a071329fe45dc4955032c2176aeb5" - integrity sha512-Xl9H9KLl86NZm5CYNTNF9dcz1xelE/EbvhWIWcYxG/rn3UWYWdWmmnX2q6ZduNdLFSGbOxzUpIx61j5zxbeXxg== - dependencies: - conventional-changelog-conventionalcommits "^5.0.0" - -"@commitlint/config-validator@^17.4.4": - version "17.4.4" - resolved "https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.4.4.tgz#d0742705719559a101d2ee49c0c514044af6d64d" - integrity sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg== - dependencies: - "@commitlint/types" "^17.4.4" - ajv "^8.11.0" - -"@commitlint/ensure@^17.4.4": - version "17.4.4" - resolved "https://registry.npmmirror.com/@commitlint/ensure/-/ensure-17.4.4.tgz#a36e7719bdb9c2b86c8b8c2e852b463a7bfda5fa" - integrity sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g== - dependencies: - "@commitlint/types" "^17.4.4" - lodash.camelcase "^4.3.0" - lodash.kebabcase "^4.1.1" - lodash.snakecase "^4.1.1" - lodash.startcase "^4.4.0" - lodash.upperfirst "^4.3.1" - -"@commitlint/execute-rule@^17.4.0": - version "17.4.0" - resolved "https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz#4518e77958893d0a5835babe65bf87e2638f6939" - integrity sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA== - -"@commitlint/format@^17.4.4": - version "17.4.4" - resolved "https://registry.npmmirror.com/@commitlint/format/-/format-17.4.4.tgz#0f6e1b4d7a301c7b1dfd4b6334edd97fc050b9f5" - integrity sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ== - dependencies: - "@commitlint/types" "^17.4.4" - chalk "^4.1.0" - -"@commitlint/is-ignored@^17.6.5": - version "17.6.5" - resolved "https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-17.6.5.tgz#cea24cd2031fe7d242590b91fab3352750887194" - integrity sha512-CQvAPt9gX7cuUbMrIaIMKczfWJqqr6m8IlJs0F2zYwyyMTQ87QMHIj5jJ5HhOaOkaj6dvTMVGx8Dd1I4xgUuoQ== - dependencies: - "@commitlint/types" "^17.4.4" - semver "7.5.0" - -"@commitlint/lint@^17.6.5": - version "17.6.5" - resolved "https://registry.npmmirror.com/@commitlint/lint/-/lint-17.6.5.tgz#dfa437f14430c9874d6b1a3ba8a2d44b79780c02" - integrity sha512-BSJMwkE4LWXrOsiP9KoHG+/heSDfvOL/Nd16+ojTS/DX8HZr8dNl8l3TfVr/d/9maWD8fSegRGtBtsyGuugFrw== - dependencies: - "@commitlint/is-ignored" "^17.6.5" - "@commitlint/parse" "^17.6.5" - "@commitlint/rules" "^17.6.5" - "@commitlint/types" "^17.4.4" - -"@commitlint/load@>6.1.1", "@commitlint/load@^17.5.0": - version "17.5.0" - resolved "https://registry.npmmirror.com/@commitlint/load/-/load-17.5.0.tgz#be45dbbb50aaf5eb7e8e940e1e0d6171d1426bab" - integrity sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q== - dependencies: - "@commitlint/config-validator" "^17.4.4" - "@commitlint/execute-rule" "^17.4.0" - "@commitlint/resolve-extends" "^17.4.4" - "@commitlint/types" "^17.4.4" - "@types/node" "*" - chalk "^4.1.0" - cosmiconfig "^8.0.0" - cosmiconfig-typescript-loader "^4.0.0" - lodash.isplainobject "^4.0.6" - lodash.merge "^4.6.2" - lodash.uniq "^4.5.0" - resolve-from "^5.0.0" - ts-node "^10.8.1" - typescript "^4.6.4 || ^5.0.0" - -"@commitlint/message@^17.4.2": - version "17.4.2" - resolved "https://registry.npmmirror.com/@commitlint/message/-/message-17.4.2.tgz#f4753a79701ad6db6db21f69076e34de6580e22c" - integrity sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q== - -"@commitlint/parse@^17.6.5": - version "17.6.5" - resolved "https://registry.npmmirror.com/@commitlint/parse/-/parse-17.6.5.tgz#7b84b328a6a94ca08ab7c98c491d9d3dab68f09d" - integrity sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw== - dependencies: - "@commitlint/types" "^17.4.4" - conventional-changelog-angular "^5.0.11" - conventional-commits-parser "^3.2.2" - -"@commitlint/read@^17.5.1": - version "17.5.1" - resolved "https://registry.npmmirror.com/@commitlint/read/-/read-17.5.1.tgz#fec903b766e2c41e3cefa80630040fcaba4f786c" - integrity sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg== - dependencies: - "@commitlint/top-level" "^17.4.0" - "@commitlint/types" "^17.4.4" - fs-extra "^11.0.0" - git-raw-commits "^2.0.11" - minimist "^1.2.6" - -"@commitlint/resolve-extends@^17.4.4": - version "17.4.4" - resolved "https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz#8f931467dea8c43b9fe38373e303f7c220de6fdc" - integrity sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A== - dependencies: - "@commitlint/config-validator" "^17.4.4" - "@commitlint/types" "^17.4.4" - import-fresh "^3.0.0" - lodash.mergewith "^4.6.2" - resolve-from "^5.0.0" - resolve-global "^1.0.0" - -"@commitlint/rules@^17.6.5": - version "17.6.5" - resolved "https://registry.npmmirror.com/@commitlint/rules/-/rules-17.6.5.tgz#fabcacdde923e26ac5ef90d4b3f8fc05526bbaa1" - integrity sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A== - dependencies: - "@commitlint/ensure" "^17.4.4" - "@commitlint/message" "^17.4.2" - "@commitlint/to-lines" "^17.4.0" - "@commitlint/types" "^17.4.4" - execa "^5.0.0" - -"@commitlint/to-lines@^17.4.0": - version "17.4.0" - resolved "https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-17.4.0.tgz#9bd02e911e7d4eab3fb4a50376c4c6d331e10d8d" - integrity sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg== - -"@commitlint/top-level@^17.4.0": - version "17.4.0" - resolved "https://registry.npmmirror.com/@commitlint/top-level/-/top-level-17.4.0.tgz#540cac8290044cf846fbdd99f5cc51e8ac5f27d6" - integrity sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g== - dependencies: - find-up "^5.0.0" - -"@commitlint/types@^17.4.4": - version "17.4.4" - resolved "https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz#1416df936e9aad0d6a7bbc979ecc31e55dade662" - integrity sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ== - dependencies: - chalk "^4.1.0" - -"@cspotcode/source-map-support@^0.8.0": - version "0.8.1" - resolved "https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" - integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== - dependencies: - "@jridgewell/trace-mapping" "0.3.9" - -"@docsearch/css@3.5.0", "@docsearch/css@^3.5.0": - version "3.5.0" - resolved "https://registry.npmmirror.com/@docsearch/css/-/css-3.5.0.tgz#5f6cb94a7c40122b21621c30a4b2460bd42d7dd0" - integrity sha512-Ob5FQLubplcBNihAVtriR59FRBeP8u69F6mu4L4yIr60KfsPc10bOV0DoPErJw0zF9IBN2cNLW9qdmt8zWPxyg== - -"@docsearch/js@^3.5.0": - version "3.5.0" - resolved "https://registry.npmmirror.com/@docsearch/js/-/js-3.5.0.tgz#870ba9322e1c917d4c2c27fa7051641379c89817" - integrity sha512-WqB+z+zVKSXDkGq028nClT9RvMzfFlemZuIulX5ZwWkdUtl4k7M9cmZA/c6kuZf7FG24XQsMHWuBjeUo9hLRyA== - dependencies: - "@docsearch/react" "3.5.0" - preact "^10.0.0" - -"@docsearch/react@3.5.0": - version "3.5.0" - resolved "https://registry.npmmirror.com/@docsearch/react/-/react-3.5.0.tgz#2468fa67dea86e4ef2935754a3453e01d850c56f" - integrity sha512-3IG8mmSMzSHNGy2S1VuPyYU9tFCxFpj5Ov8SYwsSHM4yMvFsaO9oFxXocA5lSenliIELhuOuS5+BdxHa/Qlf2A== - dependencies: - "@algolia/autocomplete-core" "1.9.2" - "@algolia/autocomplete-preset-algolia" "1.9.2" - "@docsearch/css" "3.5.0" - algoliasearch "^4.0.0" - -"@esbuild/android-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz#bafb75234a5d3d1b690e7c2956a599345e84a2fd" - integrity sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA== - -"@esbuild/android-arm@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.17.19.tgz#5898f7832c2298bc7d0ab53701c57beb74d78b4d" - integrity sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A== - -"@esbuild/android-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.17.19.tgz#658368ef92067866d95fb268719f98f363d13ae1" - integrity sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww== - -"@esbuild/darwin-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz#584c34c5991b95d4d48d333300b1a4e2ff7be276" - integrity sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg== - -"@esbuild/darwin-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz#7751d236dfe6ce136cce343dce69f52d76b7f6cb" - integrity sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw== - -"@esbuild/freebsd-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz#cacd171665dd1d500f45c167d50c6b7e539d5fd2" - integrity sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ== - -"@esbuild/freebsd-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz#0769456eee2a08b8d925d7c00b79e861cb3162e4" - integrity sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ== - -"@esbuild/linux-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz#38e162ecb723862c6be1c27d6389f48960b68edb" - integrity sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg== - -"@esbuild/linux-arm@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz#1a2cd399c50040184a805174a6d89097d9d1559a" - integrity sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA== - -"@esbuild/linux-ia32@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz#e28c25266b036ce1cabca3c30155222841dc035a" - integrity sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ== - -"@esbuild/linux-loong64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz#0f887b8bb3f90658d1a0117283e55dbd4c9dcf72" - integrity sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ== - -"@esbuild/linux-mips64el@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz#f5d2a0b8047ea9a5d9f592a178ea054053a70289" - integrity sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A== - -"@esbuild/linux-ppc64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz#876590e3acbd9fa7f57a2c7d86f83717dbbac8c7" - integrity sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg== - -"@esbuild/linux-riscv64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz#7f49373df463cd9f41dc34f9b2262d771688bf09" - integrity sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA== - -"@esbuild/linux-s390x@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz#e2afd1afcaf63afe2c7d9ceacd28ec57c77f8829" - integrity sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q== - -"@esbuild/linux-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz#8a0e9738b1635f0c53389e515ae83826dec22aa4" - integrity sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw== - -"@esbuild/netbsd-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz#c29fb2453c6b7ddef9a35e2c18b37bda1ae5c462" - integrity sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q== - -"@esbuild/openbsd-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz#95e75a391403cb10297280d524d66ce04c920691" - integrity sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g== - -"@esbuild/sunos-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz#722eaf057b83c2575937d3ffe5aeb16540da7273" - integrity sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg== - -"@esbuild/win32-arm64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz#9aa9dc074399288bdcdd283443e9aeb6b9552b6f" - integrity sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag== - -"@esbuild/win32-ia32@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz#95ad43c62ad62485e210f6299c7b2571e48d2b03" - integrity sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw== - -"@esbuild/win32-x64@0.17.19": - version "0.17.19" - resolved "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz#8cfaf2ff603e9aabb910e9c0558c26cf32744061" - integrity sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA== - -"@eslint-community/eslint-utils@^4.2.0": - version "4.4.0" - resolved "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" - integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== - dependencies: - eslint-visitor-keys "^3.3.0" - -"@eslint-community/regexpp@^4.4.0": - version "4.5.1" - resolved "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" - integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== - -"@eslint/eslintrc@^2.0.3": - version "2.0.3" - resolved "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" - integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.5.2" - globals "^13.19.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@eslint/js@8.42.0": - version "8.42.0" - resolved "https://registry.npmmirror.com/@eslint/js/-/js-8.42.0.tgz#484a1d638de2911e6f5a30c12f49c7e4a3270fb6" - integrity sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw== - -"@gar/promisify@^1.1.3": - version "1.1.3" - resolved "https://registry.npmmirror.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@humanwhocodes/config-array@^0.11.10": - version "0.11.10" - resolved "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2" - integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.5" - -"@humanwhocodes/module-importer@^1.0.1": - version "1.0.1" - resolved "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" - integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== - -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@isaacs/cliui@^8.0.2": - version "8.0.2" - resolved "https://registry.npmmirror.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" - integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== - dependencies: - string-width "^5.1.2" - string-width-cjs "npm:string-width@^4.2.0" - strip-ansi "^7.0.1" - strip-ansi-cjs "npm:strip-ansi@^6.0.1" - wrap-ansi "^8.1.0" - wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" - -"@isaacs/string-locale-compare@^1.1.0": - version "1.1.0" - resolved "https://registry.npmmirror.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b" - integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ== - -"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": - version "0.1.3" - resolved "https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.3" - resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" - integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@3.1.0": - version "3.1.0" - resolved "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" - integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== - -"@jridgewell/resolve-uri@^3.0.3": - version "3.1.1" - resolved "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" - integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== - -"@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/source-map@^0.3.2": - version "0.3.3" - resolved "https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda" - integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg== - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13": - version "1.4.15" - resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== - -"@jridgewell/trace-mapping@0.3.9": - version "0.3.9" - resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" - integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.18" - resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" - integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== - dependencies: - "@jridgewell/resolve-uri" "3.1.0" - "@jridgewell/sourcemap-codec" "1.4.14" - -"@jsdoc/salty@^0.2.1": - version "0.2.5" - resolved "https://registry.npmmirror.com/@jsdoc/salty/-/salty-0.2.5.tgz#1b2fa5bb8c66485b536d86eee877c263d322f692" - integrity sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw== - dependencies: - lodash "^4.17.21" - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": - version "1.2.8" - resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@npmcli/arborist@^6.2.9": - version "6.2.9" - resolved "https://registry.npmmirror.com/@npmcli/arborist/-/arborist-6.2.9.tgz#9ac892e5444206bd9bb3cb1ff18232322ac0fe54" - integrity sha512-uC16dg+aykdctgIYPUKNa3pNGIDYh1egzk5vOf34d24cw5mwMsVArFiVdcRieKHmOGEv595se3x0fvbwNrBk8g== - dependencies: - "@isaacs/string-locale-compare" "^1.1.0" - "@npmcli/fs" "^3.1.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" - "@npmcli/node-gyp" "^3.0.0" - "@npmcli/package-json" "^3.0.0" - "@npmcli/query" "^3.0.0" - "@npmcli/run-script" "^6.0.0" - bin-links "^4.0.1" - cacache "^17.0.4" - common-ancestor-path "^1.0.1" - hosted-git-info "^6.1.1" - json-parse-even-better-errors "^3.0.0" - json-stringify-nice "^1.1.4" - minimatch "^9.0.0" - nopt "^7.0.0" - npm-install-checks "^6.0.0" - npm-package-arg "^10.1.0" - npm-pick-manifest "^8.0.1" - npm-registry-fetch "^14.0.3" - npmlog "^7.0.1" - pacote "^15.0.8" - parse-conflict-json "^3.0.0" - proc-log "^3.0.0" - promise-all-reject-late "^1.0.0" - promise-call-limit "^1.0.2" - read-package-json-fast "^3.0.2" - semver "^7.3.7" - ssri "^10.0.1" - treeverse "^3.0.0" - walk-up-path "^3.0.1" - -"@npmcli/config@^6.1.7": - version "6.1.7" - resolved "https://registry.npmmirror.com/@npmcli/config/-/config-6.1.7.tgz#88bcaf76e0f1f36ebf422b18513cf3bec6af781f" - integrity sha512-DyACY6Mv7TH1kz2iBgwS3xE7jKsY+ukUfDyY5PLl9LZTktmBBSybDNzX3bUii+SD4j77Bx6EvgS/jsaUtV7Fng== - dependencies: - "@npmcli/map-workspaces" "^3.0.2" - ini "^4.1.0" - nopt "^7.0.0" - proc-log "^3.0.0" - read-package-json-fast "^3.0.2" - semver "^7.3.5" - walk-up-path "^3.0.1" - -"@npmcli/disparity-colors@^3.0.0": - version "3.0.0" - resolved "https://registry.npmmirror.com/@npmcli/disparity-colors/-/disparity-colors-3.0.0.tgz#60ea8c6eb5ba9de2d1950e15b06205b2c3ab7833" - integrity sha512-5R/z157/f20Fi0Ou4ZttL51V0xz0EdPEOauFtPCEYOLInDBRCj1/TxOJ5aGTrtShxEshN2d+hXb9ZKSi5RLBcg== - dependencies: - ansi-styles "^4.3.0" - -"@npmcli/fs@^2.1.0": - version "2.1.2" - resolved "https://registry.npmmirror.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" - integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== - dependencies: - "@gar/promisify" "^1.1.3" - semver "^7.3.5" - -"@npmcli/fs@^3.1.0": - version "3.1.0" - resolved "https://registry.npmmirror.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e" - integrity sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w== - dependencies: - semver "^7.3.5" - -"@npmcli/git@^4.0.0", "@npmcli/git@^4.0.1": - version "4.0.4" - resolved "https://registry.npmmirror.com/@npmcli/git/-/git-4.0.4.tgz#cdf74f21b1d440c0756fb28159d935129d9daa33" - integrity sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg== - dependencies: - "@npmcli/promise-spawn" "^6.0.0" - lru-cache "^7.4.4" - npm-pick-manifest "^8.0.0" - proc-log "^3.0.0" - promise-inflight "^1.0.1" - promise-retry "^2.0.1" - semver "^7.3.5" - which "^3.0.0" - -"@npmcli/installed-package-contents@^2.0.1", "@npmcli/installed-package-contents@^2.0.2": - version "2.0.2" - resolved "https://registry.npmmirror.com/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz#bfd817eccd9e8df200919e73f57f9e3d9e4f9e33" - integrity sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ== - dependencies: - npm-bundled "^3.0.0" - npm-normalize-package-bin "^3.0.0" - -"@npmcli/map-workspaces@^3.0.2", "@npmcli/map-workspaces@^3.0.4": - version "3.0.4" - resolved "https://registry.npmmirror.com/@npmcli/map-workspaces/-/map-workspaces-3.0.4.tgz#15ad7d854292e484f7ba04bc30187a8320dba799" - integrity sha512-Z0TbvXkRbacjFFLpVpV0e2mheCh+WzQpcqL+4xp49uNJOxOnIAPZyXtUxZ5Qn3QBTGKA11Exjd9a5411rBrhDg== - dependencies: - "@npmcli/name-from-folder" "^2.0.0" - glob "^10.2.2" - minimatch "^9.0.0" - read-package-json-fast "^3.0.0" - -"@npmcli/metavuln-calculator@^5.0.0": - version "5.0.1" - resolved "https://registry.npmmirror.com/@npmcli/metavuln-calculator/-/metavuln-calculator-5.0.1.tgz#426b3e524c2008bcc82dbc2ef390aefedd643d76" - integrity sha512-qb8Q9wIIlEPj3WeA1Lba91R4ZboPL0uspzV0F9uwP+9AYMVB2zOoa7Pbk12g6D2NHAinSbHh6QYmGuRyHZ874Q== - dependencies: - cacache "^17.0.0" - json-parse-even-better-errors "^3.0.0" - pacote "^15.0.0" - semver "^7.3.5" - -"@npmcli/move-file@^2.0.0": - version "2.0.1" - resolved "https://registry.npmmirror.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" - integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - -"@npmcli/name-from-folder@^2.0.0": - version "2.0.0" - resolved "https://registry.npmmirror.com/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz#c44d3a7c6d5c184bb6036f4d5995eee298945815" - integrity sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg== - -"@npmcli/node-gyp@^3.0.0": - version "3.0.0" - resolved "https://registry.npmmirror.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a" - integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== - -"@npmcli/package-json@^3.0.0", "@npmcli/package-json@^3.1.0": - version "3.1.0" - resolved "https://registry.npmmirror.com/@npmcli/package-json/-/package-json-3.1.0.tgz#d9eb34083be4275520f3844d17fc74926d47cae1" - integrity sha512-qNPy6Yf9ruFST99xcrl5EWAvrb7qFrwgVbwdzcTJlIgxbArKOq5e/bgZ6rTL1X9hDgAdPbvL8RWx/OTLSB0ToA== - dependencies: - glob "^10.2.2" - json-parse-even-better-errors "^3.0.0" - normalize-package-data "^5.0.0" - npm-normalize-package-bin "^3.0.1" - -"@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1": - version "6.0.2" - resolved "https://registry.npmmirror.com/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz#c8bc4fa2bd0f01cb979d8798ba038f314cfa70f2" - integrity sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg== - dependencies: - which "^3.0.0" - -"@npmcli/query@^3.0.0": - version "3.0.0" - resolved "https://registry.npmmirror.com/@npmcli/query/-/query-3.0.0.tgz#51a0dfb85811e04f244171f164b6bc83b36113a7" - integrity sha512-MFNDSJNgsLZIEBVZ0Q9w9K7o07j5N4o4yjtdz2uEpuCZlXGMuPENiRaFYk0vRqAA64qVuUQwC05g27fRtfUgnA== - dependencies: - postcss-selector-parser "^6.0.10" - -"@npmcli/run-script@^6.0.0", "@npmcli/run-script@^6.0.2": - version "6.0.2" - resolved "https://registry.npmmirror.com/@npmcli/run-script/-/run-script-6.0.2.tgz#a25452d45ee7f7fb8c16dfaf9624423c0c0eb885" - integrity sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA== - dependencies: - "@npmcli/node-gyp" "^3.0.0" - "@npmcli/promise-spawn" "^6.0.0" - node-gyp "^9.0.0" - read-package-json-fast "^3.0.0" - which "^3.0.0" - -"@octokit/app@^13.1.5": - version "13.1.5" - resolved "https://registry.npmmirror.com/@octokit/app/-/app-13.1.5.tgz#5602fd5c893ecf00e4e9bcbd917e1376544b7386" - integrity sha512-6qTa24S+gdQUU66SCVfqTkyt2jAr9/ZeyPqJhnNI9PZ8Wum4lQy3bPS+voGlxABNOlzRKnxbSdYKoraMr3MqBA== - dependencies: - "@octokit/auth-app" "^4.0.13" - "@octokit/auth-unauthenticated" "^3.0.0" - "@octokit/core" "^4.0.0" - "@octokit/oauth-app" "^4.0.7" - "@octokit/plugin-paginate-rest" "^6.0.0" - "@octokit/types" "^9.0.0" - "@octokit/webhooks" "^10.0.0" - -"@octokit/auth-app@^4.0.13": - version "4.0.13" - resolved "https://registry.npmmirror.com/@octokit/auth-app/-/auth-app-4.0.13.tgz#53323bee6bfefbb73ea544dd8e6a0144550e13e3" - integrity sha512-NBQkmR/Zsc+8fWcVIFrwDgNXS7f4XDrkd9LHdi9DPQw1NdGHLviLzRO2ZBwTtepnwHXW5VTrVU9eFGijMUqllg== - dependencies: - "@octokit/auth-oauth-app" "^5.0.0" - "@octokit/auth-oauth-user" "^2.0.0" - "@octokit/request" "^6.0.0" - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" - deprecation "^2.3.1" - lru-cache "^9.0.0" - universal-github-app-jwt "^1.1.1" - universal-user-agent "^6.0.0" - -"@octokit/auth-oauth-app@^5.0.0": - version "5.0.5" - resolved "https://registry.npmmirror.com/@octokit/auth-oauth-app/-/auth-oauth-app-5.0.5.tgz#be2a93d72835133b4866ac4721aa628849475525" - integrity sha512-UPX1su6XpseaeLVCi78s9droxpGtBWIgz9XhXAx9VXabksoF0MyI5vaa1zo1njyYt6VaAjFisC2A2Wchcu2WmQ== - dependencies: - "@octokit/auth-oauth-device" "^4.0.0" - "@octokit/auth-oauth-user" "^2.0.0" - "@octokit/request" "^6.0.0" - "@octokit/types" "^9.0.0" - "@types/btoa-lite" "^1.0.0" - btoa-lite "^1.0.0" - universal-user-agent "^6.0.0" - -"@octokit/auth-oauth-device@^4.0.0": - version "4.0.4" - resolved "https://registry.npmmirror.com/@octokit/auth-oauth-device/-/auth-oauth-device-4.0.4.tgz#b8dde812a38bf5cb0696b6e7d0a74681d437c390" - integrity sha512-Xl85BZYfqCMv+Uvz33nVVUjE7I/PVySNaK6dRRqlkvYcArSr9vRcZC9KVjXYObGRTCN6mISeYdakAZvWEN4+Jw== - dependencies: - "@octokit/oauth-methods" "^2.0.0" - "@octokit/request" "^6.0.0" - "@octokit/types" "^9.0.0" - universal-user-agent "^6.0.0" - -"@octokit/auth-oauth-user@^2.0.0": - version "2.1.1" - resolved "https://registry.npmmirror.com/@octokit/auth-oauth-user/-/auth-oauth-user-2.1.1.tgz#d900972f3d9247924637ab3343a8305746feadb2" - integrity sha512-JgqnNNPf9CaWLxWm9uh2WgxcaVYhxBR09NVIPTiMU2dVZ3FObOHs3njBiLNw+zq84k+rEdm5Y7AsiASrZ84Apg== - dependencies: - "@octokit/auth-oauth-device" "^4.0.0" - "@octokit/oauth-methods" "^2.0.0" - "@octokit/request" "^6.0.0" - "@octokit/types" "^9.0.0" - btoa-lite "^1.0.0" - universal-user-agent "^6.0.0" - -"@octokit/auth-token@^3.0.0": - version "3.0.3" - resolved "https://registry.npmmirror.com/@octokit/auth-token/-/auth-token-3.0.3.tgz#ce7e48a3166731f26068d7a7a7996b5da58cbe0c" - integrity sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA== - dependencies: - "@octokit/types" "^9.0.0" - -"@octokit/auth-unauthenticated@^3.0.0": - version "3.0.5" - resolved "https://registry.npmmirror.com/@octokit/auth-unauthenticated/-/auth-unauthenticated-3.0.5.tgz#a562bffd6ca0d0e80541eaf9f9b89b8d53020228" - integrity sha512-yH2GPFcjrTvDWPwJWWCh0tPPtTL5SMgivgKPA+6v/XmYN6hGQkAto8JtZibSKOpf8ipmeYhLNWQ2UgW0GYILCw== - dependencies: - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" - -"@octokit/core@^4.0.0", "@octokit/core@^4.2.1": - version "4.2.1" - resolved "https://registry.npmmirror.com/@octokit/core/-/core-4.2.1.tgz#fee6341ad0ce60c29cc455e056cd5b500410a588" - integrity sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw== - dependencies: - "@octokit/auth-token" "^3.0.0" - "@octokit/graphql" "^5.0.0" - "@octokit/request" "^6.0.0" - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" - before-after-hook "^2.2.0" - universal-user-agent "^6.0.0" - -"@octokit/endpoint@^7.0.0": - version "7.0.5" - resolved "https://registry.npmmirror.com/@octokit/endpoint/-/endpoint-7.0.5.tgz#2bb2a911c12c50f10014183f5d596ce30ac67dd1" - integrity sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA== - dependencies: - "@octokit/types" "^9.0.0" - is-plain-object "^5.0.0" - universal-user-agent "^6.0.0" - -"@octokit/graphql@^5.0.0": - version "5.0.5" - resolved "https://registry.npmmirror.com/@octokit/graphql/-/graphql-5.0.5.tgz#a4cb3ea73f83b861893a6370ee82abb36e81afd2" - integrity sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ== - dependencies: - "@octokit/request" "^6.0.0" - "@octokit/types" "^9.0.0" - universal-user-agent "^6.0.0" - -"@octokit/oauth-app@^4.0.7", "@octokit/oauth-app@^4.2.1": - version "4.2.2" - resolved "https://registry.npmmirror.com/@octokit/oauth-app/-/oauth-app-4.2.2.tgz#41ff9e672f3d486f18e97d2e4fd00589b1fb928b" - integrity sha512-/jsPd43Yu2UXJ4XGq9KyOjPj5kNWQ5pfVzeDEfIVE8ENchyIPS+/IY2a8b0+OQSAsBKBLTHVp9m51RfGHmPZlw== - dependencies: - "@octokit/auth-oauth-app" "^5.0.0" - "@octokit/auth-oauth-user" "^2.0.0" - "@octokit/auth-unauthenticated" "^3.0.0" - "@octokit/core" "^4.0.0" - "@octokit/oauth-authorization-url" "^5.0.0" - "@octokit/oauth-methods" "^2.0.0" - "@types/aws-lambda" "^8.10.83" - fromentries "^1.3.1" - universal-user-agent "^6.0.0" - -"@octokit/oauth-authorization-url@^5.0.0": - version "5.0.0" - resolved "https://registry.npmmirror.com/@octokit/oauth-authorization-url/-/oauth-authorization-url-5.0.0.tgz#029626ce87f3b31addb98cd0d2355c2381a1c5a1" - integrity sha512-y1WhN+ERDZTh0qZ4SR+zotgsQUE1ysKnvBt1hvDRB2WRzYtVKQjn97HEPzoehh66Fj9LwNdlZh+p6TJatT0zzg== - -"@octokit/oauth-methods@^2.0.0": - version "2.0.5" - resolved "https://registry.npmmirror.com/@octokit/oauth-methods/-/oauth-methods-2.0.5.tgz#b11ce2205c46ffcd731c7332b21bb62dad10ce24" - integrity sha512-yQP6B5gE3axNxuM3U9KqWs/ErAQ+WLPaPgC/7EjsZsQibkf8sjdAfF8/y/EJW+Dd05XQvadX4WhQZPMnO1SE1A== - dependencies: - "@octokit/oauth-authorization-url" "^5.0.0" - "@octokit/request" "^6.2.3" - "@octokit/request-error" "^3.0.3" - "@octokit/types" "^9.0.0" - btoa-lite "^1.0.0" - -"@octokit/openapi-types@^17.2.0": - version "17.2.0" - resolved "https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-17.2.0.tgz#f1800b5f9652b8e1b85cc6dfb1e0dc888810bdb5" - integrity sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ== - -"@octokit/openapi-types@^18.0.0": - version "18.0.0" - resolved "https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-18.0.0.tgz#f43d765b3c7533fd6fb88f3f25df079c24fccf69" - integrity sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw== - -"@octokit/plugin-paginate-rest@^6.0.0", "@octokit/plugin-paginate-rest@^6.1.0": - version "6.1.2" - resolved "https://registry.npmmirror.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz#f86456a7a1fe9e58fec6385a85cf1b34072341f8" - integrity sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ== - dependencies: - "@octokit/tsconfig" "^1.0.2" - "@octokit/types" "^9.2.3" - -"@octokit/plugin-paginate-rest@^7.0.0": - version "7.1.0" - resolved "https://registry.npmmirror.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-7.1.0.tgz#71a042c06b2fad793148426a526492f86b126132" - integrity sha512-vbKrs/VZ8Sx4T9IxxxnksL969L705GkcgrzdlJoF0rVxjTfetYUmaGzD9oUvNhbx9MrxOZreYJlpm1BySe2Z9w== - dependencies: - "@octokit/tsconfig" "^1.0.2" - "@octokit/types" "^9.3.1" - -"@octokit/plugin-rest-endpoint-methods@^7.1.1": - version "7.1.2" - resolved "https://registry.npmmirror.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.1.2.tgz#b77a8844601d3a394a02200cddb077f3ab841f38" - integrity sha512-R0oJ7j6f/AdqPLtB9qRXLO+wjI9pctUn8Ka8UGfGaFCcCv3Otx14CshQ89K4E88pmyYZS8p0rNTiprML/81jig== - dependencies: - "@octokit/types" "^9.2.3" - deprecation "^2.3.1" - -"@octokit/plugin-retry@^4.1.3": - version "4.1.3" - resolved "https://registry.npmmirror.com/@octokit/plugin-retry/-/plugin-retry-4.1.3.tgz#c717d7908be26a5570941d9688e3e8a3da95e714" - integrity sha512-3YKBj7d0J/4mpEc4xzMociWsMNl5lZqrpAnYcW6mqiSGF3wFjU+c6GHih6GLClk31JNvKDr0x9jc5cfm7evkZg== - dependencies: - "@octokit/types" "^9.0.0" - bottleneck "^2.15.3" - -"@octokit/plugin-retry@^5.0.0": - version "5.0.2" - resolved "https://registry.npmmirror.com/@octokit/plugin-retry/-/plugin-retry-5.0.2.tgz#c324506d08fa01080cc22f10b9f12dfeb096ba79" - integrity sha512-/Z7rWLCfjwmaVdyFuMkZoAnhfrvYgtvDrbO2d6lv7XrvJa8gFGB5tLUMngfuyMBfDCc5B9+EVu7IkQx5ebVlMg== - dependencies: - "@octokit/types" "^9.0.0" - bottleneck "^2.15.3" - -"@octokit/plugin-throttling@^5.2.2": - version "5.2.3" - resolved "https://registry.npmmirror.com/@octokit/plugin-throttling/-/plugin-throttling-5.2.3.tgz#9f552a14dcee5c7326dd9dee64a71ea76b108814" - integrity sha512-C9CFg9mrf6cugneKiaI841iG8DOv6P5XXkjmiNNut+swePxQ7RWEdAZRp5rJoE1hjsIqiYcKa/ZkOQ+ujPI39Q== - dependencies: - "@octokit/types" "^9.0.0" - bottleneck "^2.15.3" - -"@octokit/plugin-throttling@^6.0.0": - version "6.1.0" - resolved "https://registry.npmmirror.com/@octokit/plugin-throttling/-/plugin-throttling-6.1.0.tgz#093275e6b542be371acb0631252a428f2f1b0615" - integrity sha512-JqMbTiPC0sUSTsLQsdq3JVx1mx8UtTo5mwR80YqPXE93+XhevvSyOR1rO2Z+NbO/r0TK4hqFJSSi/9oIZBxZTg== - dependencies: - "@octokit/types" "^9.0.0" - bottleneck "^2.15.3" - -"@octokit/request-error@^3.0.0", "@octokit/request-error@^3.0.3": - version "3.0.3" - resolved "https://registry.npmmirror.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69" - integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== - dependencies: - "@octokit/types" "^9.0.0" - deprecation "^2.0.0" - once "^1.4.0" - -"@octokit/request@^6.0.0", "@octokit/request@^6.2.3": - version "6.2.5" - resolved "https://registry.npmmirror.com/@octokit/request/-/request-6.2.5.tgz#7beef1065042998f7455973ef3f818e7b84d6ec2" - integrity sha512-z83E8UIlPNaJUsXpjD8E0V5o/5f+vJJNbNcBwVZsX3/vC650U41cOkTLjq4PKk9BYonQGOnx7N17gvLyNjgGcQ== - dependencies: - "@octokit/endpoint" "^7.0.0" - "@octokit/request-error" "^3.0.0" - "@octokit/types" "^9.0.0" - is-plain-object "^5.0.0" - node-fetch "^2.6.7" - universal-user-agent "^6.0.0" - -"@octokit/tsconfig@^1.0.2": - version "1.0.2" - resolved "https://registry.npmmirror.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7" - integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA== - -"@octokit/types@^9.0.0", "@octokit/types@^9.2.2", "@octokit/types@^9.2.3": - version "9.2.3" - resolved "https://registry.npmmirror.com/@octokit/types/-/types-9.2.3.tgz#d0af522f394d74b585cefb7efd6197ca44d183a9" - integrity sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA== - dependencies: - "@octokit/openapi-types" "^17.2.0" - -"@octokit/types@^9.3.1": - version "9.3.1" - resolved "https://registry.npmmirror.com/@octokit/types/-/types-9.3.1.tgz#9eb20390f8cfcc975635d813f9a2094efd4aa2dd" - integrity sha512-zfJzyXLHC42sWcn2kS+oZ/DRvFZBYCCbfInZtwp1Uopl1qh6pRg4NSP/wFX1xCOpXvEkctiG1sxlSlkZmzvxdw== - dependencies: - "@octokit/openapi-types" "^18.0.0" - -"@octokit/webhooks-methods@^3.0.0": - version "3.0.2" - resolved "https://registry.npmmirror.com/@octokit/webhooks-methods/-/webhooks-methods-3.0.2.tgz#cece91cc72714a1c83b35d121e04334f051e509c" - integrity sha512-Vlnv5WBscf07tyAvfDbp7pTkMZUwk7z7VwEF32x6HqI+55QRwBTcT+D7DDjZXtad/1dU9E32x0HmtDlF9VIRaQ== - -"@octokit/webhooks-types@6.11.0": - version "6.11.0" - resolved "https://registry.npmmirror.com/@octokit/webhooks-types/-/webhooks-types-6.11.0.tgz#1fb903bff3f2883490d6ba88d8cb8f8a55f68176" - integrity sha512-AanzbulOHljrku1NGfafxdpTCfw2ENaWzH01N2vqQM+cUFbk868Cgh0xylz0JIM9BoKbfI++bdD6EYX0Q/UTEw== - -"@octokit/webhooks@^10.0.0": - version "10.9.1" - resolved "https://registry.npmmirror.com/@octokit/webhooks/-/webhooks-10.9.1.tgz#4674a6924567419d7d0187a8b6c88ec468a97a86" - integrity sha512-5NXU4VfsNOo2VSU/SrLrpPH2Z1ZVDOWFcET4EpnEBX1uh/v8Uz65UVuHIRx5TZiXhnWyRE9AO1PXHa+M/iWwZA== - dependencies: - "@octokit/request-error" "^3.0.0" - "@octokit/webhooks-methods" "^3.0.0" - "@octokit/webhooks-types" "6.11.0" - aggregate-error "^3.1.0" - -"@pkgjs/parseargs@^0.11.0": - version "0.11.0" - resolved "https://registry.npmmirror.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" - integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== - -"@pnpm/config.env-replace@^1.1.0": - version "1.1.0" - resolved "https://registry.npmmirror.com/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz#ab29da53df41e8948a00f2433f085f54de8b3a4c" - integrity sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w== - -"@pnpm/network.ca-file@^1.0.1": - version "1.0.2" - resolved "https://registry.npmmirror.com/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz#2ab05e09c1af0cdf2fcf5035bea1484e222f7983" - integrity sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA== - dependencies: - graceful-fs "4.2.10" - -"@pnpm/npm-conf@^2.1.0": - version "2.2.0" - resolved "https://registry.npmmirror.com/@pnpm/npm-conf/-/npm-conf-2.2.0.tgz#221b4cfcde745d5f8928c25f391e5cc9d405b345" - integrity sha512-roLI1ul/GwzwcfcVpZYPdrgW2W/drLriObl1h+yLF5syc8/5ULWw2ALbCHUWF+4YltIqA3xFSbG4IwyJz37e9g== - dependencies: - "@pnpm/config.env-replace" "^1.1.0" - "@pnpm/network.ca-file" "^1.0.1" - config-chain "^1.1.11" - -"@rollup/plugin-commonjs@^25.0.1": - version "25.0.1" - resolved "https://registry.npmmirror.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.1.tgz#da984ea47f4450bb830fc1601bda130cfd603eb1" - integrity sha512-2DJ4kv4b1xfTJopWhu61ANdNRHvzQZ2fpaIrlgaP2jOfUv1wDJ0Ucqy8AZlbFmn/iUjiwKoqki9j55Y6L8kyNQ== - dependencies: - "@rollup/pluginutils" "^5.0.1" - commondir "^1.0.1" - estree-walker "^2.0.2" - glob "^8.0.3" - is-reference "1.2.1" - magic-string "^0.27.0" - -"@rollup/plugin-json@^6.0.0": - version "6.0.0" - resolved "https://registry.npmmirror.com/@rollup/plugin-json/-/plugin-json-6.0.0.tgz#199fea6670fd4dfb1f4932250569b14719db234a" - integrity sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w== - dependencies: - "@rollup/pluginutils" "^5.0.1" - -"@rollup/plugin-node-resolve@^15.1.0": - version "15.1.0" - resolved "https://registry.npmmirror.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.1.0.tgz#9ffcd8e8c457080dba89bb9fcb583a6778dc757e" - integrity sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA== - dependencies: - "@rollup/pluginutils" "^5.0.1" - "@types/resolve" "1.20.2" - deepmerge "^4.2.2" - is-builtin-module "^3.2.1" - is-module "^1.0.0" - resolve "^1.22.1" - -"@rollup/plugin-terser@^0.4.3": - version "0.4.3" - resolved "https://registry.npmmirror.com/@rollup/plugin-terser/-/plugin-terser-0.4.3.tgz#c2bde2fe3a85e45fa68a454d48f4e73e57f98b30" - integrity sha512-EF0oejTMtkyhrkwCdg0HJ0IpkcaVg1MMSf2olHb2Jp+1mnLM04OhjpJWGma4HobiDTF0WCyViWuvadyE9ch2XA== - dependencies: - serialize-javascript "^6.0.1" - smob "^1.0.0" - terser "^5.17.4" - -"@rollup/pluginutils@^5.0.1": - version "5.0.2" - resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.0.2.tgz#012b8f53c71e4f6f9cb317e311df1404f56e7a33" - integrity sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA== - dependencies: - "@types/estree" "^1.0.0" - estree-walker "^2.0.2" - picomatch "^2.3.1" - -"@semantic-release/changelog@~6.0.3": - version "6.0.3" - resolved "https://registry.npmmirror.com/@semantic-release/changelog/-/changelog-6.0.3.tgz#6195630ecbeccad174461de727d5f975abc23eeb" - integrity sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag== - dependencies: - "@semantic-release/error" "^3.0.0" - aggregate-error "^3.0.0" - fs-extra "^11.0.0" - lodash "^4.17.4" - -"@semantic-release/commit-analyzer@^10.0.0": - version "10.0.1" - resolved "https://registry.npmmirror.com/@semantic-release/commit-analyzer/-/commit-analyzer-10.0.1.tgz#be6fcc1703459294c394ede41b37fd9a21d39807" - integrity sha512-9ejHzTAijYs9z246sY/dKBatmOPcd0GQ7lH4MgLCkv1q4GCiDZRkjHJkaQZXZVaK7mJybS+sH3Ng6G8i3pYMGQ== - dependencies: - conventional-changelog-angular "^6.0.0" - conventional-commits-filter "^3.0.0" - conventional-commits-parser "^4.0.0" - debug "^4.0.0" - import-from "^4.0.0" - lodash-es "^4.17.21" - micromatch "^4.0.2" - -"@semantic-release/error@^3.0.0": - version "3.0.0" - resolved "https://registry.npmmirror.com/@semantic-release/error/-/error-3.0.0.tgz#30a3b97bbb5844d695eb22f9d3aa40f6a92770c2" - integrity sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw== - -"@semantic-release/error@^4.0.0": - version "4.0.0" - resolved "https://registry.npmmirror.com/@semantic-release/error/-/error-4.0.0.tgz#692810288239637f74396976a9340fbc0aa9f6f9" - integrity sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ== - -"@semantic-release/exec@~6.0.3": - version "6.0.3" - resolved "https://registry.npmmirror.com/@semantic-release/exec/-/exec-6.0.3.tgz#d212fdf19633bdfb553de6cb6c7f8781933224db" - integrity sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ== - dependencies: - "@semantic-release/error" "^3.0.0" - aggregate-error "^3.0.0" - debug "^4.0.0" - execa "^5.0.0" - lodash "^4.17.4" - parse-json "^5.0.0" - -"@semantic-release/git@~10.0.1": - version "10.0.1" - resolved "https://registry.npmmirror.com/@semantic-release/git/-/git-10.0.1.tgz#c646e55d67fae623875bf3a06a634dd434904498" - integrity sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w== - dependencies: - "@semantic-release/error" "^3.0.0" - aggregate-error "^3.0.0" - debug "^4.0.0" - dir-glob "^3.0.0" - execa "^5.0.0" - lodash "^4.17.4" - micromatch "^4.0.0" - p-reduce "^2.0.0" - -"@semantic-release/github@^9.0.0", "@semantic-release/github@^9.0.3": - version "9.0.3" - resolved "https://registry.npmmirror.com/@semantic-release/github/-/github-9.0.3.tgz#2559da9bcedeacb572f240469270a281c2a83615" - integrity sha512-X6gq4USKVlCxPwIIyXb99jU7gwVWlnsKOevs+OyABRdoqc+OIRITbFmrrYU3eE1vGMGk+Qu/GAoLUQQQwC3YOA== - dependencies: - "@octokit/core" "^4.2.1" - "@octokit/plugin-paginate-rest" "^7.0.0" - "@octokit/plugin-retry" "^5.0.0" - "@octokit/plugin-throttling" "^6.0.0" - "@semantic-release/error" "^4.0.0" - aggregate-error "^4.0.1" - debug "^4.3.4" - dir-glob "^3.0.1" - globby "^13.1.4" - http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.0" - issue-parser "^6.0.0" - lodash-es "^4.17.21" - mime "^3.0.0" - p-filter "^3.0.0" - url-join "^5.0.0" - -"@semantic-release/npm@^10.0.2": - version "10.0.3" - resolved "https://registry.npmmirror.com/@semantic-release/npm/-/npm-10.0.3.tgz#11c5a1927f2e942d4067732d930cb44718b9b7ac" - integrity sha512-Chbv3kX4o+y+r1X6hsqBVB8NFbSVfiNlYOqMG6o9Wc8r5Y4cjxfbaMCuJ++XAtw3YXYX/NVD05cPzBi4Orjusg== - dependencies: - "@semantic-release/error" "^3.0.0" - aggregate-error "^4.0.1" - execa "^7.0.0" - fs-extra "^11.0.0" - lodash-es "^4.17.21" - nerf-dart "^1.0.0" - normalize-url "^8.0.0" - npm "^9.5.0" - rc "^1.2.8" - read-pkg "^8.0.0" - registry-auth-token "^5.0.0" - semver "^7.1.2" - tempy "^3.0.0" - -"@semantic-release/npm@~10.0.4": - version "10.0.4" - resolved "https://registry.npmmirror.com/@semantic-release/npm/-/npm-10.0.4.tgz#b55df5cb86d4b10b4e8eb56d5ce0bd3537c641e1" - integrity sha512-6R3timIQ7VoL2QWRkc9DG8v74RQtRp7UOe/2KbNaqwJ815qOibAv65bH3RtTEhs4axEaHoZf7HDgFs5opaZ9Jw== - dependencies: - "@semantic-release/error" "^4.0.0" - aggregate-error "^4.0.1" - execa "^7.0.0" - fs-extra "^11.0.0" - lodash-es "^4.17.21" - nerf-dart "^1.0.0" - normalize-url "^8.0.0" - npm "^9.5.0" - rc "^1.2.8" - read-pkg "^8.0.0" - registry-auth-token "^5.0.0" - semver "^7.1.2" - tempy "^3.0.0" - -"@semantic-release/release-notes-generator@^11.0.0": - version "11.0.1" - resolved "https://registry.npmmirror.com/@semantic-release/release-notes-generator/-/release-notes-generator-11.0.1.tgz#38a7d66e9a762915bea36a006dbb2d41fbcb4a66" - integrity sha512-4deWsiY4Rg80oc9Ms11N20BIDgYkPMys4scNYQpi2Njdrtw5Z55nXKNsUN3kn6Sy/nI9dqqbp5L63TL4luI5Bw== - dependencies: - conventional-changelog-angular "^5.0.0" - conventional-changelog-writer "^5.0.0" - conventional-commits-filter "^2.0.0" - conventional-commits-parser "^3.2.3" - debug "^4.0.0" - get-stream "^6.0.0" - import-from "^4.0.0" - into-stream "^7.0.0" - lodash-es "^4.17.21" - read-pkg-up "^9.0.0" - -"@sigstore/protobuf-specs@^0.1.0": - version "0.1.0" - resolved "https://registry.npmmirror.com/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4" - integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ== - -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.npmmirror.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - -"@tsconfig/node10@^1.0.7": - version "1.0.9" - resolved "https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2" - integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== - -"@tsconfig/node12@^1.0.7": - version "1.0.11" - resolved "https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" - integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== - -"@tsconfig/node14@^1.0.0": - version "1.0.3" - resolved "https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" - integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== - -"@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== - -"@tufjs/canonical-json@1.0.0": - version "1.0.0" - resolved "https://registry.npmmirror.com/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz#eade9fd1f537993bc1f0949f3aea276ecc4fab31" - integrity sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ== - -"@tufjs/models@1.0.4": - version "1.0.4" - resolved "https://registry.npmmirror.com/@tufjs/models/-/models-1.0.4.tgz#5a689630f6b9dbda338d4b208019336562f176ef" - integrity sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A== - dependencies: - "@tufjs/canonical-json" "1.0.0" - minimatch "^9.0.0" - -"@types/aws-lambda@^8.10.83": - version "8.10.115" - resolved "https://registry.npmmirror.com/@types/aws-lambda/-/aws-lambda-8.10.115.tgz#0b5ba361c8e95430ce25fa8d67640c5ac6c857b6" - integrity sha512-kCZuFXKLV3y8NjSoaD5+qKTpRWvPz3uh3W/u1uwlw3Mg+MtaStg1NWgjAwUXo/VJDb6n6KF1ljykFNlNwEJ53Q== - -"@types/babel-types@*", "@types/babel-types@^7.0.0": - version "7.0.11" - resolved "https://registry.npmmirror.com/@types/babel-types/-/babel-types-7.0.11.tgz#263b113fa396fac4373188d73225297fb86f19a9" - integrity sha512-pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A== - -"@types/babylon@^6.16.2": - version "6.16.6" - resolved "https://registry.npmmirror.com/@types/babylon/-/babylon-6.16.6.tgz#a1e7e01567b26a5ebad321a74d10299189d8d932" - integrity sha512-G4yqdVlhr6YhzLXFKy5F7HtRBU8Y23+iWy7UKthMq/OSQnL1hbsoeXESQ2LY8zEDlknipDG3nRGhUC9tkwvy/w== - dependencies: - "@types/babel-types" "*" - -"@types/btoa-lite@^1.0.0": - version "1.0.0" - resolved "https://registry.npmmirror.com/@types/btoa-lite/-/btoa-lite-1.0.0.tgz#e190a5a548e0b348adb0df9ac7fa5f1151c7cca4" - integrity sha512-wJsiX1tosQ+J5+bY5LrSahHxr2wT+uME5UDwdN1kg4frt40euqA+wzECkmq4t5QbveHiJepfdThgQrPw6KiSlg== - -"@types/chai-subset@^1.3.3": - version "1.3.3" - resolved "https://registry.npmmirror.com/@types/chai-subset/-/chai-subset-1.3.3.tgz#97893814e92abd2c534de422cb377e0e0bdaac94" - integrity sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw== - dependencies: - "@types/chai" "*" - -"@types/chai@*", "@types/chai@^4.3.5": - version "4.3.5" - resolved "https://registry.npmmirror.com/@types/chai/-/chai-4.3.5.tgz#ae69bcbb1bebb68c4ac0b11e9d8ed04526b3562b" - integrity sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng== - -"@types/estree@*", "@types/estree@^1.0.0": - version "1.0.1" - resolved "https://registry.npmmirror.com/@types/estree/-/estree-1.0.1.tgz#aa22750962f3bf0e79d753d3cc067f010c95f194" - integrity sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== - -"@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/js-cookie@^3.0.3": - version "3.0.3" - resolved "https://registry.npmmirror.com/@types/js-cookie/-/js-cookie-3.0.3.tgz#d6bfbbdd0c187354ca555213d1962f6d0691ff4e" - integrity sha512-Xe7IImK09HP1sv2M/aI+48a20VX+TdRJucfq4vfRVy6nWN8PYPOEnlMRSgxJAgYQIXJVL8dZ4/ilAM7dWNaOww== - -"@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.npmmirror.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== - -"@types/jsonwebtoken@^9.0.0": - version "9.0.2" - resolved "https://registry.npmmirror.com/@types/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz#9eeb56c76dd555039be2a3972218de5bd3b8d83e" - integrity sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q== - dependencies: - "@types/node" "*" - -"@types/linkify-it@*": - version "3.0.2" - resolved "https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-3.0.2.tgz#fd2cd2edbaa7eaac7e7f3c1748b52a19143846c9" - integrity sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA== - -"@types/lodash-es@^4.17.7": - version "4.17.7" - resolved "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.7.tgz#22edcae9f44aff08546e71db8925f05b33c7cc40" - integrity sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ== - dependencies: - "@types/lodash" "*" - -"@types/lodash@*": - version "4.14.194" - resolved "https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.194.tgz#b71eb6f7a0ff11bff59fc987134a093029258a76" - integrity sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== - -"@types/markdown-it@^12.2.3": - version "12.2.3" - resolved "https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-12.2.3.tgz#0d6f6e5e413f8daaa26522904597be3d6cd93b51" - integrity sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ== - dependencies: - "@types/linkify-it" "*" - "@types/mdurl" "*" - -"@types/mdurl@*": - version "1.0.2" - resolved "https://registry.npmmirror.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9" - integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== - -"@types/minimist@^1.2.0": - version "1.2.2" - resolved "https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" - integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== - -"@types/node@*": - version "20.2.1" - resolved "https://registry.npmmirror.com/@types/node/-/node-20.2.1.tgz#de559d4b33be9a808fd43372ccee822c70f39704" - integrity sha512-DqJociPbZP1lbZ5SQPk4oag6W7AyaGMO6gSfRwq3PWl4PXTwJpRQJhDq4W0kzrg3w6tJ1SwlvGZ5uKFHY13LIg== - -"@types/node@^20.3.1": - version "20.3.1" - resolved "https://registry.npmmirror.com/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" - integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== - -"@types/normalize-package-data@^2.4.0", "@types/normalize-package-data@^2.4.1": - version "2.4.1" - resolved "https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== - -"@types/resolve@1.20.2": - version "1.20.2" - resolved "https://registry.npmmirror.com/@types/resolve/-/resolve-1.20.2.tgz#97d26e00cd4a0423b4af620abecf3e6f442b7975" - integrity sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q== - -"@types/semver@^7.3.12": - version "7.5.0" - resolved "https://registry.npmmirror.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a" - integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== - -"@types/web-bluetooth@^0.0.17": - version "0.0.17" - resolved "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz#5c9f3c617f64a9735d7b72a7cc671e166d900c40" - integrity sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA== - -"@typescript-eslint/eslint-plugin@^5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.11.tgz#8d466aa21abea4c3f37129997b198d141f09e76f" - integrity sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg== - dependencies: - "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.11" - "@typescript-eslint/type-utils" "5.59.11" - "@typescript-eslint/utils" "5.59.11" - debug "^4.3.4" - grapheme-splitter "^1.0.4" - ignore "^5.2.0" - natural-compare-lite "^1.4.0" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/parser@^5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.59.11.tgz#af7d4b7110e3068ce0b97550736de455e4250103" - integrity sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA== - dependencies: - "@typescript-eslint/scope-manager" "5.59.11" - "@typescript-eslint/types" "5.59.11" - "@typescript-eslint/typescript-estree" "5.59.11" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.11.tgz#5d131a67a19189c42598af9fb2ea1165252001ce" - integrity sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q== - dependencies: - "@typescript-eslint/types" "5.59.11" - "@typescript-eslint/visitor-keys" "5.59.11" - -"@typescript-eslint/type-utils@5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.59.11.tgz#5eb67121808a84cb57d65a15f48f5bdda25f2346" - integrity sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g== - dependencies: - "@typescript-eslint/typescript-estree" "5.59.11" - "@typescript-eslint/utils" "5.59.11" - debug "^4.3.4" - tsutils "^3.21.0" - -"@typescript-eslint/types@5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.59.11.tgz#1a9018fe3c565ba6969561f2a49f330cf1fe8db1" - integrity sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA== - -"@typescript-eslint/typescript-estree@5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.11.tgz#b2caaa31725e17c33970c1197bcd54e3c5f42b9f" - integrity sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA== - dependencies: - "@typescript-eslint/types" "5.59.11" - "@typescript-eslint/visitor-keys" "5.59.11" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/utils@5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.59.11.tgz#9dbff49dc80bfdd9289f9f33548f2e8db3c59ba1" - integrity sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.11" - "@typescript-eslint/types" "5.59.11" - "@typescript-eslint/typescript-estree" "5.59.11" - eslint-scope "^5.1.1" - semver "^7.3.7" - -"@typescript-eslint/visitor-keys@5.59.11": - version "5.59.11" - resolved "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.11.tgz#dca561ddad169dc27d62396d64f45b2d2c3ecc56" - integrity sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA== - dependencies: - "@typescript-eslint/types" "5.59.11" - eslint-visitor-keys "^3.3.0" - -"@vitejs/plugin-vue@^4.2.3": - version "4.2.3" - resolved "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.2.3.tgz#ee0b6dfcc62fe65364e6395bf38fa2ba10bb44b6" - integrity sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw== - -"@vitest/coverage-c8@^0.32.0": - version "0.32.0" - resolved "https://registry.npmmirror.com/@vitest/coverage-c8/-/coverage-c8-0.32.0.tgz#945f8f32ddc42af780feeea193698e5c27e5f322" - integrity sha512-FeTzRN5VCL7B6YTRK5ZPQO2iwJzl2x7/mTQ/2uEeKZatAYBtvczeAYnzSUhCPev7p99+5skxMQZwqVcFTrVCdg== - dependencies: - "@ampproject/remapping" "^2.2.1" - c8 "^7.13.0" - magic-string "^0.30.0" - picocolors "^1.0.0" - std-env "^3.3.2" - -"@vitest/expect@0.32.0": - version "0.32.0" - resolved "https://registry.npmmirror.com/@vitest/expect/-/expect-0.32.0.tgz#5b10cdc822d54cb870aef917462fbf847202e4e0" - integrity sha512-VxVHhIxKw9Lux+O9bwLEEk2gzOUe93xuFHy9SzYWnnoYZFYg1NfBtnfnYWiJN7yooJ7KNElCK5YtA7DTZvtXtg== - dependencies: - "@vitest/spy" "0.32.0" - "@vitest/utils" "0.32.0" - chai "^4.3.7" - -"@vitest/runner@0.32.0": - version "0.32.0" - resolved "https://registry.npmmirror.com/@vitest/runner/-/runner-0.32.0.tgz#d2a391bf4bb373e324cf2f372d8bb913ab323f08" - integrity sha512-QpCmRxftHkr72xt5A08xTEs9I4iWEXIOCHWhQQguWOKE4QH7DXSKZSOFibuwEIMAD7G0ERvtUyQn7iPWIqSwmw== - dependencies: - "@vitest/utils" "0.32.0" - concordance "^5.0.4" - p-limit "^4.0.0" - pathe "^1.1.0" - -"@vitest/snapshot@0.32.0": - version "0.32.0" - resolved "https://registry.npmmirror.com/@vitest/snapshot/-/snapshot-0.32.0.tgz#49c6a08da12ab903ab4582386c97d70b293bc644" - integrity sha512-yCKorPWjEnzpUxQpGlxulujTcSPgkblwGzAUEL+z01FTUg/YuCDZ8dxr9sHA08oO2EwxzHXNLjQKWJ2zc2a19Q== - dependencies: - magic-string "^0.30.0" - pathe "^1.1.0" - pretty-format "^27.5.1" - -"@vitest/spy@0.32.0": - version "0.32.0" - resolved "https://registry.npmmirror.com/@vitest/spy/-/spy-0.32.0.tgz#3ccb4e6dd4cbda7bb837c467d8405e2f8cc107a2" - integrity sha512-MruAPlM0uyiq3d53BkwTeShXY0rYEfhNGQzVO5GHBmmX3clsxcWp79mMnkOVcV244sNTeDcHbcPFWIjOI4tZvw== - dependencies: - tinyspy "^2.1.0" - -"@vitest/utils@0.32.0": - version "0.32.0" - resolved "https://registry.npmmirror.com/@vitest/utils/-/utils-0.32.0.tgz#ffbc023083e0ef8401a3562086de0ff1b0599635" - integrity sha512-53yXunzx47MmbuvcOPpLaVljHaeSu1G2dHdmy7+9ngMnQIkBQcvwOcoclWFnxDMxFbnq8exAfh3aKSZaK71J5A== - dependencies: - concordance "^5.0.4" - loupe "^2.3.6" - pretty-format "^27.5.1" - -"@vue/compiler-core@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz#7fbf591c1c19e1acd28ffd284526e98b4f581128" - integrity sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g== - dependencies: - "@babel/parser" "^7.21.3" - "@vue/shared" "3.3.4" - estree-walker "^2.0.2" - source-map-js "^1.0.2" - -"@vue/compiler-dom@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz#f56e09b5f4d7dc350f981784de9713d823341151" - integrity sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w== - dependencies: - "@vue/compiler-core" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/compiler-sfc@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz#b19d942c71938893535b46226d602720593001df" - integrity sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ== - dependencies: - "@babel/parser" "^7.20.15" - "@vue/compiler-core" "3.3.4" - "@vue/compiler-dom" "3.3.4" - "@vue/compiler-ssr" "3.3.4" - "@vue/reactivity-transform" "3.3.4" - "@vue/shared" "3.3.4" - estree-walker "^2.0.2" - magic-string "^0.30.0" - postcss "^8.1.10" - source-map-js "^1.0.2" - -"@vue/compiler-ssr@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz#9d1379abffa4f2b0cd844174ceec4a9721138777" - integrity sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ== - dependencies: - "@vue/compiler-dom" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/devtools-api@^6.5.0": - version "6.5.0" - resolved "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" - integrity sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== - -"@vue/reactivity-transform@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz#52908476e34d6a65c6c21cd2722d41ed8ae51929" - integrity sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw== - dependencies: - "@babel/parser" "^7.20.15" - "@vue/compiler-core" "3.3.4" - "@vue/shared" "3.3.4" - estree-walker "^2.0.2" - magic-string "^0.30.0" - -"@vue/reactivity@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz#a27a29c6cd17faba5a0e99fbb86ee951653e2253" - integrity sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ== - dependencies: - "@vue/shared" "3.3.4" - -"@vue/runtime-core@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz#4bb33872bbb583721b340f3088888394195967d1" - integrity sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA== - dependencies: - "@vue/reactivity" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/runtime-dom@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz#992f2579d0ed6ce961f47bbe9bfe4b6791251566" - integrity sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ== - dependencies: - "@vue/runtime-core" "3.3.4" - "@vue/shared" "3.3.4" - csstype "^3.1.1" - -"@vue/server-renderer@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz#ea46594b795d1536f29bc592dd0f6655f7ea4c4c" - integrity sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ== - dependencies: - "@vue/compiler-ssr" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/shared@3.3.4": - version "3.3.4" - resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780" - integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ== - -"@vueuse/core@10.1.2", "@vueuse/core@^10.1.2": - version "10.1.2" - resolved "https://registry.npmmirror.com/@vueuse/core/-/core-10.1.2.tgz#2499eadec36c5d7109338e3a2b73725040ae8011" - integrity sha512-roNn8WuerI56A5uiTyF/TEYX0Y+VKlhZAF94unUfdhbDUI+NfwQMn4FUnUscIRUhv3344qvAghopU4bzLPNFlA== - dependencies: - "@types/web-bluetooth" "^0.0.17" - "@vueuse/metadata" "10.1.2" - "@vueuse/shared" "10.1.2" - vue-demi ">=0.14.0" - -"@vueuse/integrations@^10.1.2": - version "10.1.2" - resolved "https://registry.npmmirror.com/@vueuse/integrations/-/integrations-10.1.2.tgz#e318ed2cec87711b2a110dceca2150d7fe1452d0" - integrity sha512-wUpG3Wv6LiWerOwCzOAM0iGhNQ4vfFUTkhj/xQy7TLXduh2M3D8N08aS0KqlxsejY6R8NLxydDIM+68QfHZZ8Q== - dependencies: - "@vueuse/core" "10.1.2" - "@vueuse/shared" "10.1.2" - vue-demi ">=0.14.0" - -"@vueuse/metadata@10.1.2": - version "10.1.2" - resolved "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.1.2.tgz#d8ffe557b1042efd03a0aa88540a00c25d193ee3" - integrity sha512-3mc5BqN9aU2SqBeBuWE7ne4OtXHoHKggNgxZR2K+zIW4YLsy6xoZ4/9vErQs6tvoKDX6QAqm3lvsrv0mczAwIQ== - -"@vueuse/shared@10.1.2": - version "10.1.2" - resolved "https://registry.npmmirror.com/@vueuse/shared/-/shared-10.1.2.tgz#31d8733a217a6396eb67706319133bf62cdd8baa" - integrity sha512-1uoUTPBlgyscK9v6ScGeVYDDzlPSFXBlxuK7SfrDGyUTBiznb3mNceqhwvZHjtDRELZEN79V5uWPTF1VDV8svA== - dependencies: - vue-demi ">=0.14.0" - -JSONStream@^1.0.4, JSONStream@^1.3.5: - version "1.3.5" - resolved "https://registry.npmmirror.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" - integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== - dependencies: - jsonparse "^1.2.0" - through ">=2.2.7 <3" - -abbrev@^1.0.0: - version "1.1.1" - resolved "https://registry.npmmirror.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -abbrev@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf" - integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ== - -abort-controller@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" - integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== - dependencies: - event-target-shim "^5.0.0" - -ace-builds@^1.4.13: - version "1.21.1" - resolved "https://registry.npmmirror.com/ace-builds/-/ace-builds-1.21.1.tgz#fb73589114725795babac7cedbbb74cd438c715b" - integrity sha512-GHHtz76BnQc5PcAAjJK6tPbuktSKQ+Vu5MDlu2+hDS4NtiofrttGBJHaxcD4741WZwsAO7Dk1I8w2a4n204T+Q== - -acorn-globals@^3.0.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" - integrity sha512-uWttZCk96+7itPxK8xCzY86PnxKTMrReKDqrHzv42VQY0K30PUO8WY13WMOuI+cOdX4EIdzdvQ8k6jkuGRFMYw== - dependencies: - acorn "^4.0.4" - -acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn-walk@^8.1.1, acorn-walk@^8.2.0: - version "8.2.0" - resolved "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1" - integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== - -acorn@^3.1.0: - version "3.3.0" - resolved "https://registry.npmmirror.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" - integrity sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw== - -acorn@^4.0.4, acorn@~4.0.2: - version "4.0.13" - resolved "https://registry.npmmirror.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" - integrity sha512-fu2ygVGuMmlzG8ZeRJ0bvR41nsAkxxhbyk8bZ1SS521Z7vmgJFTQQlfz/Mp/nJexGBz+v8sC9bM6+lNgskt4Ug== - -acorn@^8.4.1, acorn@^8.5.0, acorn@^8.8.0, acorn@^8.8.2: - version "8.8.2" - resolved "https://registry.npmmirror.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== - -agent-base@6, agent-base@^6.0.2: - version "6.0.2" - resolved "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -agent-base@^7.0.2, agent-base@^7.1.0: - version "7.1.0" - resolved "https://registry.npmmirror.com/agent-base/-/agent-base-7.1.0.tgz#536802b76bc0b34aa50195eb2442276d613e3434" - integrity sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg== - dependencies: - debug "^4.3.4" - -agentkeepalive@^4.2.1: - version "4.3.0" - resolved "https://registry.npmmirror.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255" - integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg== - dependencies: - debug "^4.1.0" - depd "^2.0.0" - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0, aggregate-error@^3.1.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - -aggregate-error@^4.0.0, aggregate-error@^4.0.1: - version "4.0.1" - resolved "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-4.0.1.tgz#25091fe1573b9e0be892aeda15c7c66a545f758e" - integrity sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w== - dependencies: - clean-stack "^4.0.0" - indent-string "^5.0.0" - -ajv@^6.10.0, ajv@^6.12.4: - version "6.12.6" - resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ajv@^8.11.0: - version "8.12.0" - resolved "https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" - integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== - dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" - -algoliasearch@^4.0.0: - version "4.17.1" - resolved "https://registry.npmmirror.com/algoliasearch/-/algoliasearch-4.17.1.tgz#23926448b815bbf9a921bc6077abc1ce8d3224b2" - integrity sha512-4GDQ1RhP2qUR3x8PevFRbEdqZqIARNViZYjgTJmA1T7wRNtFA3W4Aqc/RsODqa1J8IO/QDla5x4tWuUS8NV8wA== - dependencies: - "@algolia/cache-browser-local-storage" "4.17.1" - "@algolia/cache-common" "4.17.1" - "@algolia/cache-in-memory" "4.17.1" - "@algolia/client-account" "4.17.1" - "@algolia/client-analytics" "4.17.1" - "@algolia/client-common" "4.17.1" - "@algolia/client-personalization" "4.17.1" - "@algolia/client-search" "4.17.1" - "@algolia/logger-common" "4.17.1" - "@algolia/logger-console" "4.17.1" - "@algolia/requester-browser-xhr" "4.17.1" - "@algolia/requester-common" "4.17.1" - "@algolia/requester-node-http" "4.17.1" - "@algolia/transporter" "4.17.1" - -align-text@^0.1.1, align-text@^0.1.3: - version "0.1.4" - resolved "https://registry.npmmirror.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" - integrity sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg== - dependencies: - kind-of "^3.0.2" - longest "^1.0.1" - repeat-string "^1.5.2" - -ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: - version "4.3.2" - resolved "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-escapes@^6.2.0: - version "6.2.0" - resolved "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-6.2.0.tgz#8a13ce75286f417f1963487d86ba9f90dccf9947" - integrity sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw== - dependencies: - type-fest "^3.0.0" - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-sequence-parser@^1.1.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.0.tgz#4d790f31236ac20366b23b3916b789e1bde39aed" - integrity sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.3.0: - version "4.3.0" - resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -ansi-styles@^6.0.0, ansi-styles@^6.1.0: - version "6.2.1" - resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== - -ansicolors@~0.3.2: - version "0.3.2" - resolved "https://registry.npmmirror.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" - integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg== - -"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - -archy@~1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" - integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== - -are-we-there-yet@^3.0.0: - version "3.0.1" - resolved "https://registry.npmmirror.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" - integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -are-we-there-yet@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/are-we-there-yet/-/are-we-there-yet-4.0.0.tgz#3ff397dc14f08b52dd8b2a64d3cee154ab8760d2" - integrity sha512-nSXlV+u3vtVjRgihdTzbfWYzxPWGo424zPgQbHD0ZqIla3jqYAewDcvee0Ua2hjS5IfTAmjGlx1Jf0PKwjZDEw== - dependencies: - delegates "^1.0.0" - readable-stream "^4.1.0" - -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -argv-formatter@~1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/argv-formatter/-/argv-formatter-1.0.0.tgz#a0ca0cbc29a5b73e836eebe1cbf6c5e0e4eb82f9" - integrity sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw== - -array-buffer-byte-length@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" - integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== - dependencies: - call-bind "^1.0.2" - is-array-buffer "^3.0.1" - -array-ify@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" - integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== - -array-includes@^3.1.6: - version "3.1.6" - resolved "https://registry.npmmirror.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" - integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" - is-string "^1.0.7" - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array.prototype.flat@^1.3.1: - version "1.3.1" - resolved "https://registry.npmmirror.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" - integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - -array.prototype.flatmap@^1.3.1: - version "1.3.1" - resolved "https://registry.npmmirror.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" - integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== - -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.npmmirror.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== - -assertion-error@^1.1.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" - integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== - -ast-types@0.12.4, ast-types@^0.12.2: - version "0.12.4" - resolved "https://registry.npmmirror.com/ast-types/-/ast-types-0.12.4.tgz#71ce6383800f24efc9a1a3308f3a6e420a0974d1" - integrity sha512-ky/YVYCbtVAS8TdMIaTiPFHwEpRB5z1hctepJplTr3UW5q8TDrpIMCILyk8pmLxGtn2KCtC/lSn7zOsaI7nzDw== - -ast-types@^0.14.2: - version "0.14.2" - resolved "https://registry.npmmirror.com/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd" - integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA== - dependencies: - tslib "^2.0.1" - -astral-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" - integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== - -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== - -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - -babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.npmmirror.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -babel-types@^6.26.0: - version "6.26.0" - resolved "https://registry.npmmirror.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - integrity sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g== - dependencies: - babel-runtime "^6.26.0" - esutils "^2.0.2" - lodash "^4.17.4" - to-fast-properties "^1.0.3" - -babylon@^6.18.0: - version "6.18.0" - resolved "https://registry.npmmirror.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" - integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -before-after-hook@^2.2.0: - version "2.2.3" - resolved "https://registry.npmmirror.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c" - integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== - -better-docs@^2.7.2: - version "2.7.2" - resolved "https://registry.npmmirror.com/better-docs/-/better-docs-2.7.2.tgz#fe0b54fca8a904fe050586aa819263195e5eb948" - integrity sha512-aIOsGhhcTIDAJfBTABIPDs3q98dfNF85yUwmKShXb3ZG6e7s+ojBePiDqvFwy/MpnjYwuSbuzkbEv4iPWcSuTQ== - dependencies: - brace "^0.11.1" - react-ace "^9.5.0" - react-docgen "^5.4.0" - react-frame-component "^5.2.1" - typescript "^4.5.4" - underscore "^1.13.2" - vue-docgen-api "^3.26.0" - vue2-ace-editor "^0.0.15" - -bin-links@^4.0.1: - version "4.0.1" - resolved "https://registry.npmmirror.com/bin-links/-/bin-links-4.0.1.tgz#afeb0549e642f61ff889b58ea2f8dca78fb9d8d3" - integrity sha512-bmFEM39CyX336ZGGRsGPlc6jZHriIoHacOQcTt72MktIjpPhZoP4te2jOyUXF3BLILmJ8aNLncoPVeIIFlrDeA== - dependencies: - cmd-shim "^6.0.0" - npm-normalize-package-bin "^3.0.0" - read-cmd-shim "^4.0.0" - write-file-atomic "^5.0.0" - -binary-extensions@^2.2.0: - version "2.2.0" - resolved "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -bl@^4.1.0: - version "4.1.0" - resolved "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -bluebird@^3.7.2: - version "3.7.2" - resolved "https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" - integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== - -blueimp-md5@^2.10.0: - version "2.19.0" - resolved "https://registry.npmmirror.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0" - integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w== - -body-scroll-lock@4.0.0-beta.0: - version "4.0.0-beta.0" - resolved "https://registry.npmmirror.com/body-scroll-lock/-/body-scroll-lock-4.0.0-beta.0.tgz#4f78789d10e6388115c0460cd6d7d4dd2bbc4f7e" - integrity sha512-a7tP5+0Mw3YlUJcGAKUqIBkYYGlYxk2fnCasq/FUph1hadxlTRjF+gAcZksxANnaMnALjxEddmSi/H3OR8ugcQ== - -bottleneck@^2.15.3: - version "2.19.5" - resolved "https://registry.npmmirror.com/bottleneck/-/bottleneck-2.19.5.tgz#5df0b90f59fd47656ebe63c78a98419205cadd91" - integrity sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== - dependencies: - balanced-match "^1.0.0" - -brace@^0.11.0, brace@^0.11.1: - version "0.11.1" - resolved "https://registry.npmmirror.com/brace/-/brace-0.11.1.tgz#4896fcc9d544eef45f4bb7660db320d3b379fe58" - integrity sha512-Fc8Ne62jJlKHiG/ajlonC4Sd66Pq68fFwK4ihJGNZpGqboc324SQk+lRvMzpPRuJOmfrJefdG8/7JdWX4bzJ2Q== - -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browserslist@^4.21.3: - version "4.21.5" - resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== - dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" - -btoa-lite@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" - integrity sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA== - -buffer-equal-constant-time@1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" - integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA== - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -buffer@^6.0.3: - version "6.0.3" - resolved "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - -builtin-modules@^3.3.0: - version "3.3.0" - resolved "https://registry.npmmirror.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" - integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== - -builtins@^5.0.0: - version "5.0.1" - resolved "https://registry.npmmirror.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" - integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== - dependencies: - semver "^7.0.0" - -c8@^7.13.0, c8@^7.6.0: - version "7.13.0" - resolved "https://registry.npmmirror.com/c8/-/c8-7.13.0.tgz#a2a70a851278709df5a9247d62d7f3d4bcb5f2e4" - integrity sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@istanbuljs/schema" "^0.1.3" - find-up "^5.0.0" - foreground-child "^2.0.0" - istanbul-lib-coverage "^3.2.0" - istanbul-lib-report "^3.0.0" - istanbul-reports "^3.1.4" - rimraf "^3.0.2" - test-exclude "^6.0.0" - v8-to-istanbul "^9.0.0" - yargs "^16.2.0" - yargs-parser "^20.2.9" - -c8@^7.14.0: - version "7.14.0" - resolved "https://registry.npmmirror.com/c8/-/c8-7.14.0.tgz#f368184c73b125a80565e9ab2396ff0be4d732f3" - integrity sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@istanbuljs/schema" "^0.1.3" - find-up "^5.0.0" - foreground-child "^2.0.0" - istanbul-lib-coverage "^3.2.0" - istanbul-lib-report "^3.0.0" - istanbul-reports "^3.1.4" - rimraf "^3.0.2" - test-exclude "^6.0.0" - v8-to-istanbul "^9.0.0" - yargs "^16.2.0" - yargs-parser "^20.2.9" - -cac@^6.7.14: - version "6.7.14" - resolved "https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" - integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== - -cacache@^16.1.0: - version "16.1.3" - resolved "https://registry.npmmirror.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" - integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== - dependencies: - "@npmcli/fs" "^2.1.0" - "@npmcli/move-file" "^2.0.0" - chownr "^2.0.0" - fs-minipass "^2.1.0" - glob "^8.0.1" - infer-owner "^1.0.4" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - mkdirp "^1.0.4" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^9.0.0" - tar "^6.1.11" - unique-filename "^2.0.0" - -cacache@^17.0.0, cacache@^17.0.4, cacache@^17.1.2: - version "17.1.3" - resolved "https://registry.npmmirror.com/cacache/-/cacache-17.1.3.tgz#c6ac23bec56516a7c0c52020fd48b4909d7c7044" - integrity sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg== - dependencies: - "@npmcli/fs" "^3.1.0" - fs-minipass "^3.0.0" - glob "^10.2.2" - lru-cache "^7.7.1" - minipass "^5.0.0" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - p-map "^4.0.0" - ssri "^10.0.0" - tar "^6.1.11" - unique-filename "^3.0.0" - -cachedir@2.3.0: - version "2.3.0" - resolved "https://registry.npmmirror.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" - integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^1.0.2: - version "1.2.1" - resolved "https://registry.npmmirror.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" - integrity sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g== - -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -caniuse-lite@^1.0.30001449: - version "1.0.30001488" - resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001488.tgz#d19d7b6e913afae3e98f023db97c19e9ddc5e91f" - integrity sha512-NORIQuuL4xGpIy6iCCQGN4iFjlBXtfKWIenlUuyZJumLRIindLb7wXM+GO8erEhb7vXfcnf4BAg2PrSDN5TNLQ== - -cardinal@^2.1.1: - version "2.1.1" - resolved "https://registry.npmmirror.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505" - integrity sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw== - dependencies: - ansicolors "~0.3.2" - redeyed "~2.1.0" - -catharsis@^0.9.0: - version "0.9.0" - resolved "https://registry.npmmirror.com/catharsis/-/catharsis-0.9.0.tgz#40382a168be0e6da308c277d3a2b3eb40c7d2121" - integrity sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A== - dependencies: - lodash "^4.17.15" - -center-align@^0.1.1: - version "0.1.3" - resolved "https://registry.npmmirror.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" - integrity sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ== - dependencies: - align-text "^0.1.3" - lazy-cache "^1.0.3" - -chai@^4.3.7: - version "4.3.7" - resolved "https://registry.npmmirror.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51" - integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A== - dependencies: - assertion-error "^1.1.0" - check-error "^1.0.2" - deep-eql "^4.1.2" - get-func-name "^2.0.0" - loupe "^2.3.1" - pathval "^1.1.1" - type-detect "^4.0.5" - -chalk@5.2.0, chalk@^5.2.0: - version "5.2.0" - resolved "https://registry.npmmirror.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" - integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== - -chalk@^2.0.0, chalk@^2.3.2, chalk@^2.4.1: - version "2.4.2" - resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -character-parser@^2.1.1: - version "2.2.0" - resolved "https://registry.npmmirror.com/character-parser/-/character-parser-2.2.0.tgz#c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0" - integrity sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw== - dependencies: - is-regex "^1.0.3" - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== - -check-error@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" - integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - -ci-info@^3.6.1, ci-info@^3.7.1, ci-info@^3.8.0: - version "3.8.0" - resolved "https://registry.npmmirror.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" - integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== - -cidr-regex@^3.1.1: - version "3.1.1" - resolved "https://registry.npmmirror.com/cidr-regex/-/cidr-regex-3.1.1.tgz#ba1972c57c66f61875f18fd7dd487469770b571d" - integrity sha512-RBqYd32aDwbCMFJRL6wHOlDNYJsPNTt8vC82ErHF5vKt8QQzxm1FrkW8s/R5pVrXMf17sba09Uoy91PKiddAsw== - dependencies: - ip-regex "^4.1.0" - -clean-css@^4.1.11: - version "4.2.4" - resolved "https://registry.npmmirror.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178" - integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== - dependencies: - source-map "~0.6.0" - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -clean-stack@^4.0.0: - version "4.2.0" - resolved "https://registry.npmmirror.com/clean-stack/-/clean-stack-4.2.0.tgz#c464e4cde4ac789f4e0735c5d75beb49d7b30b31" - integrity sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg== - dependencies: - escape-string-regexp "5.0.0" - -cli-columns@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/cli-columns/-/cli-columns-4.0.0.tgz#9fe4d65975238d55218c41bd2ed296a7fa555646" - integrity sha512-XW2Vg+w+L9on9wtwKpyzluIPCWXjaBahI7mTcYjx+BVIYD9c3yqcv/yKC7CmdCZat4rq2yiE1UMSJC5ivKfMtQ== - dependencies: - string-width "^4.2.3" - strip-ansi "^6.0.1" - -cli-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" - integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== - dependencies: - restore-cursor "^3.1.0" - -cli-spinners@^2.5.0: - version "2.9.0" - resolved "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db" - integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g== - -cli-table3@^0.6.3: - version "0.6.3" - resolved "https://registry.npmmirror.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" - integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== - dependencies: - string-width "^4.2.0" - optionalDependencies: - "@colors/colors" "1.5.0" - -cli-truncate@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" - integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== - dependencies: - slice-ansi "^3.0.0" - string-width "^4.2.0" - -cli-truncate@^3.1.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" - integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== - dependencies: - slice-ansi "^5.0.0" - string-width "^5.0.0" - -cli-width@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" - integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== - -cliui@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" - integrity sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA== - dependencies: - center-align "^0.1.1" - right-align "^0.1.1" - wordwrap "0.0.2" - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - -clone@^1.0.2: - version "1.0.4" - resolved "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== - -cmd-shim@^6.0.0: - version "6.0.1" - resolved "https://registry.npmmirror.com/cmd-shim/-/cmd-shim-6.0.1.tgz#a65878080548e1dca760b3aea1e21ed05194da9d" - integrity sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q== - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.npmmirror.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -colorette@^2.0.19: - version "2.0.20" - resolved "https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - -columnify@^1.6.0: - version "1.6.0" - resolved "https://registry.npmmirror.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3" - integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q== - dependencies: - strip-ansi "^6.0.1" - wcwidth "^1.0.0" - -commander@^10.0.0: - version "10.0.1" - resolved "https://registry.npmmirror.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" - integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== - -commander@^2.19.0, commander@^2.20.0: - version "2.20.3" - resolved "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== - -commitizen@^4.0.3, commitizen@^4.3.0: - version "4.3.0" - resolved "https://registry.npmmirror.com/commitizen/-/commitizen-4.3.0.tgz#0d056c542a2d2b1f9b9aba981aa32575b2849924" - integrity sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw== - dependencies: - cachedir "2.3.0" - cz-conventional-changelog "3.3.0" - dedent "0.7.0" - detect-indent "6.1.0" - find-node-modules "^2.1.2" - find-root "1.1.0" - fs-extra "9.1.0" - glob "7.2.3" - inquirer "8.2.5" - is-utf8 "^0.2.1" - lodash "4.17.21" - minimist "1.2.7" - strip-bom "4.0.0" - strip-json-comments "3.1.1" - -common-ancestor-path@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7" - integrity sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w== - -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - -compare-func@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" - integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== - dependencies: - array-ify "^1.0.0" - dot-prop "^5.1.0" - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -concordance@^5.0.4: - version "5.0.4" - resolved "https://registry.npmmirror.com/concordance/-/concordance-5.0.4.tgz#9896073261adced72f88d60e4d56f8efc4bbbbd2" - integrity sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw== - dependencies: - date-time "^3.1.0" - esutils "^2.0.3" - fast-diff "^1.2.0" - js-string-escape "^1.0.1" - lodash "^4.17.15" - md5-hex "^3.0.1" - semver "^7.3.2" - well-known-symbols "^2.0.0" - -config-chain@^1.1.11: - version "1.1.13" - resolved "https://registry.npmmirror.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" - integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== - dependencies: - ini "^1.3.4" - proto-list "~1.2.1" - -console-control-strings@^1.1.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - -constantinople@^3.0.1, constantinople@^3.1.2: - version "3.1.2" - resolved "https://registry.npmmirror.com/constantinople/-/constantinople-3.1.2.tgz#d45ed724f57d3d10500017a7d3a889c1381ae647" - integrity sha512-yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw== - dependencies: - "@types/babel-types" "^7.0.0" - "@types/babylon" "^6.16.2" - babel-types "^6.26.0" - babylon "^6.18.0" - -conventional-changelog-angular@^5.0.0, conventional-changelog-angular@^5.0.11: - version "5.0.13" - resolved "https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" - integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== - dependencies: - compare-func "^2.0.0" - q "^1.5.1" - -conventional-changelog-angular@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz#a9a9494c28b7165889144fd5b91573c4aa9ca541" - integrity sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg== - dependencies: - compare-func "^2.0.0" - -conventional-changelog-conventionalcommits@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz#41bdce54eb65a848a4a3ffdca93e92fa22b64a86" - integrity sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw== - dependencies: - compare-func "^2.0.0" - lodash "^4.17.15" - q "^1.5.1" - -conventional-changelog-writer@^5.0.0: - version "5.0.1" - resolved "https://registry.npmmirror.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359" - integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ== - dependencies: - conventional-commits-filter "^2.0.7" - dateformat "^3.0.0" - handlebars "^4.7.7" - json-stringify-safe "^5.0.1" - lodash "^4.17.15" - meow "^8.0.0" - semver "^6.0.0" - split "^1.0.0" - through2 "^4.0.0" - -conventional-commit-types@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz#7c9214e58eae93e85dd66dbfbafe7e4fffa2365b" - integrity sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg== - -conventional-commits-filter@^2.0.0, conventional-commits-filter@^2.0.7: - version "2.0.7" - resolved "https://registry.npmmirror.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" - integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== - dependencies: - lodash.ismatch "^4.4.0" - modify-values "^1.0.0" - -conventional-commits-filter@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz#bf1113266151dd64c49cd269e3eb7d71d7015ee2" - integrity sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q== - dependencies: - lodash.ismatch "^4.4.0" - modify-values "^1.0.1" - -conventional-commits-parser@^3.2.2, conventional-commits-parser@^3.2.3: - version "3.2.4" - resolved "https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972" - integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== - dependencies: - JSONStream "^1.0.4" - is-text-path "^1.0.1" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -conventional-commits-parser@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz#02ae1178a381304839bce7cea9da5f1b549ae505" - integrity sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg== - dependencies: - JSONStream "^1.3.5" - is-text-path "^1.0.1" - meow "^8.1.2" - split2 "^3.2.2" - -convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.9.0" - resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== - -core-js@^2.4.0: - version "2.6.12" - resolved "https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" - integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== - -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cosmiconfig-typescript-loader@^4.0.0: - version "4.3.0" - resolved "https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz#c4259ce474c9df0f32274ed162c0447c951ef073" - integrity sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q== - -cosmiconfig@^8.0.0: - version "8.1.3" - resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" - integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== - dependencies: - import-fresh "^3.2.1" - js-yaml "^4.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - -cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -crypto-random-string@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/crypto-random-string/-/crypto-random-string-4.0.0.tgz#5a3cc53d7dd86183df5da0312816ceeeb5bb1fc2" - integrity sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== - dependencies: - type-fest "^1.0.1" - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -csstype@^3.1.1: - version "3.1.2" - resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" - integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== - -cz-conventional-changelog@3.3.0: - version "3.3.0" - resolved "https://registry.npmmirror.com/cz-conventional-changelog/-/cz-conventional-changelog-3.3.0.tgz#9246947c90404149b3fe2cf7ee91acad3b7d22d2" - integrity sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw== - dependencies: - chalk "^2.4.1" - commitizen "^4.0.3" - conventional-commit-types "^3.0.0" - lodash.map "^4.5.1" - longest "^2.0.1" - word-wrap "^1.0.3" - optionalDependencies: - "@commitlint/load" ">6.1.1" - -dargs@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" - integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== - -date-time@^3.1.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/date-time/-/date-time-3.1.0.tgz#0d1e934d170579f481ed8df1e2b8ff70ee845e1e" - integrity sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg== - dependencies: - time-zone "^1.0.0" - -dateformat@^3.0.0: - version "3.0.3" - resolved "https://registry.npmmirror.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" - integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== - -dayjs@^1.11.8: - version "1.11.8" - resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.8.tgz#4282f139c8c19dd6d0c7bd571e30c2d0ba7698ea" - integrity sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ== - -de-indent@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" - integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== - -debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -decamelize-keys@^1.1.0: - version "1.1.1" - resolved "https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" - integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.0.0, decamelize@^1.1.0: - version "1.2.0" - resolved "https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -dedent@0.7.0: - version "0.7.0" - resolved "https://registry.npmmirror.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== - -deep-eql@^4.1.2: - version "4.1.3" - resolved "https://registry.npmmirror.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d" - integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== - dependencies: - type-detect "^4.0.0" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.npmmirror.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@^0.1.3: - version "0.1.4" - resolved "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@^4.2.2: - version "4.3.1" - resolved "https://registry.npmmirror.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" - integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== - -defaults@^1.0.3: - version "1.0.4" - resolved "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" - integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== - dependencies: - clone "^1.0.2" - -define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: - version "1.2.0" - resolved "https://registry.npmmirror.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" - integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - -depd@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -deprecation@^2.0.0, deprecation@^2.3.1: - version "2.3.1" - resolved "https://registry.npmmirror.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" - integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== - -detect-file@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" - integrity sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== - -detect-indent@6.1.0: - version "6.1.0" - resolved "https://registry.npmmirror.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" - integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== - -diff-match-patch@^1.0.5: - version "1.0.5" - resolved "https://registry.npmmirror.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37" - integrity sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw== - -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - -diff@^5.1.0: - version "5.1.0" - resolved "https://registry.npmmirror.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40" - integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== - -dir-glob@^3.0.0, dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -doctrine@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" - integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== - dependencies: - esutils "^2.0.2" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -doctypes@^1.1.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" - integrity sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ== - -dot-prop@^5.1.0: - version "5.3.0" - resolved "https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" - integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== - dependencies: - is-obj "^2.0.0" - -dotenv@^16.1.4: - version "16.1.4" - resolved "https://registry.npmmirror.com/dotenv/-/dotenv-16.1.4.tgz#67ac1a10cd9c25f5ba604e4e08bc77c0ebe0ca8c" - integrity sha512-m55RtE8AsPeJBpOIFKihEmqUcoVncQIwo7x9U8ZwLEZw9ZpXboz2c+rvog+jUaJvVrZ5kBOeYQBX5+8Aa/OZQw== - -duplexer2@~0.1.0: - version "0.1.4" - resolved "https://registry.npmmirror.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" - integrity sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA== - dependencies: - readable-stream "^2.0.2" - -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== - -ecdsa-sig-formatter@1.0.11: - version "1.0.11" - resolved "https://registry.npmmirror.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" - integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== - dependencies: - safe-buffer "^5.0.1" - -electron-to-chromium@^1.4.284: - version "1.4.402" - resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.402.tgz#9aa7bbb63081513127870af6d22f829344c5ba57" - integrity sha512-gWYvJSkohOiBE6ecVYXkrDgNaUjo47QEKK0kQzmWyhkH+yoYiG44bwuicTGNSIQRG3WDMsWVZJLRnJnLNkbWvA== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== - -encoding@^0.1.13: - version "0.1.13" - resolved "https://registry.npmmirror.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - -entities@~2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" - integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== - -env-ci@^9.0.0: - version "9.1.0" - resolved "https://registry.npmmirror.com/env-ci/-/env-ci-9.1.0.tgz#ed05a5ce98938efe536e448bb649403fe26ca337" - integrity sha512-ZCEas2sDVFR3gpumwwzSU4OJZwWJ46yqJH3TqH3vSxEBzeAlC0uCJLGAnZC0vX1TIXzHzjcwpKmUn2xw5mC/qA== - dependencies: - execa "^7.0.0" - java-properties "^1.0.2" - -env-paths@^2.2.0: - version "2.2.1" - resolved "https://registry.npmmirror.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" - integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== - -err-code@^2.0.2: - version "2.0.3" - resolved "https://registry.npmmirror.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" - integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== - -error-ex@^1.3.1, error-ex@^1.3.2: - version "1.3.2" - resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.19.0, es-abstract@^1.20.4: - version "1.21.2" - resolved "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" - integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== - dependencies: - array-buffer-byte-length "^1.0.0" - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - es-set-tostringtag "^2.0.1" - es-to-primitive "^1.2.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.2.0" - get-symbol-description "^1.0.0" - globalthis "^1.0.3" - gopd "^1.0.1" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-proto "^1.0.1" - has-symbols "^1.0.3" - internal-slot "^1.0.5" - is-array-buffer "^3.0.2" - is-callable "^1.2.7" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-typed-array "^1.1.10" - is-weakref "^1.0.2" - object-inspect "^1.12.3" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - safe-regex-test "^1.0.0" - string.prototype.trim "^1.2.7" - string.prototype.trimend "^1.0.6" - string.prototype.trimstart "^1.0.6" - typed-array-length "^1.0.4" - unbox-primitive "^1.0.2" - which-typed-array "^1.1.9" - -es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== - dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" - has-tostringtag "^1.0.0" - -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== - dependencies: - has "^1.0.3" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -esbuild@^0.17.5: - version "0.17.19" - resolved "https://registry.npmmirror.com/esbuild/-/esbuild-0.17.19.tgz#087a727e98299f0462a3d0bcdd9cd7ff100bd955" - integrity sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw== - optionalDependencies: - "@esbuild/android-arm" "0.17.19" - "@esbuild/android-arm64" "0.17.19" - "@esbuild/android-x64" "0.17.19" - "@esbuild/darwin-arm64" "0.17.19" - "@esbuild/darwin-x64" "0.17.19" - "@esbuild/freebsd-arm64" "0.17.19" - "@esbuild/freebsd-x64" "0.17.19" - "@esbuild/linux-arm" "0.17.19" - "@esbuild/linux-arm64" "0.17.19" - "@esbuild/linux-ia32" "0.17.19" - "@esbuild/linux-loong64" "0.17.19" - "@esbuild/linux-mips64el" "0.17.19" - "@esbuild/linux-ppc64" "0.17.19" - "@esbuild/linux-riscv64" "0.17.19" - "@esbuild/linux-s390x" "0.17.19" - "@esbuild/linux-x64" "0.17.19" - "@esbuild/netbsd-x64" "0.17.19" - "@esbuild/openbsd-x64" "0.17.19" - "@esbuild/sunos-x64" "0.17.19" - "@esbuild/win32-arm64" "0.17.19" - "@esbuild/win32-ia32" "0.17.19" - "@esbuild/win32-x64" "0.17.19" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-string-regexp@5.0.0, escape-string-regexp@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" - integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -eslint-config-prettier@^8.8.0: - version "8.8.0" - resolved "https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348" - integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA== - -eslint-import-resolver-node@^0.3.7: - version "0.3.7" - resolved "https://registry.npmmirror.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" - integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== - dependencies: - debug "^3.2.7" - is-core-module "^2.11.0" - resolve "^1.22.1" - -eslint-module-utils@^2.7.4: - version "2.8.0" - resolved "https://registry.npmmirror.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49" - integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw== - dependencies: - debug "^3.2.7" - -eslint-plugin-import@^2.27.5: - version "2.27.5" - resolved "https://registry.npmmirror.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" - integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== - dependencies: - array-includes "^3.1.6" - array.prototype.flat "^1.3.1" - array.prototype.flatmap "^1.3.1" - debug "^3.2.7" - doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.7" - eslint-module-utils "^2.7.4" - has "^1.0.3" - is-core-module "^2.11.0" - is-glob "^4.0.3" - minimatch "^3.1.2" - object.values "^1.1.6" - resolve "^1.22.1" - semver "^6.3.0" - tsconfig-paths "^3.14.1" - -eslint-plugin-prettier@^4.2.1: - version "4.2.1" - resolved "https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" - integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== - dependencies: - prettier-linter-helpers "^1.0.0" - -eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-scope@^7.2.0: - version "7.2.0" - resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" - integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: - version "3.4.1" - resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" - integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== - -eslint@^8.42.0: - version "8.42.0" - resolved "https://registry.npmmirror.com/eslint/-/eslint-8.42.0.tgz#7bebdc3a55f9ed7167251fe7259f75219cade291" - integrity sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.3" - "@eslint/js" "8.42.0" - "@humanwhocodes/config-array" "^0.11.10" - "@humanwhocodes/module-importer" "^1.0.1" - "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.1" - espree "^9.5.2" - esquery "^1.4.2" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - find-up "^5.0.0" - glob-parent "^6.0.2" - globals "^13.19.0" - graphemer "^1.4.0" - ignore "^5.2.0" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - is-path-inside "^3.0.3" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.1" - strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" - text-table "^0.2.0" - -espree@^9.5.2: - version "9.5.2" - resolved "https://registry.npmmirror.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" - integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== - dependencies: - acorn "^8.8.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.1" - -esprima@~4.0.0: - version "4.0.1" - resolved "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.4.2: - version "1.5.0" - resolved "https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -estree-to-babel@^3.1.0: - version "3.2.1" - resolved "https://registry.npmmirror.com/estree-to-babel/-/estree-to-babel-3.2.1.tgz#82e78315275c3ca74475fdc8ac1a5103c8a75bf5" - integrity sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg== - dependencies: - "@babel/traverse" "^7.1.6" - "@babel/types" "^7.2.0" - c8 "^7.6.0" - -estree-walker@^2.0.2: - version "2.0.2" - resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" - integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== - -esutils@^2.0.2, esutils@^2.0.3: - version "2.0.3" - resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -event-target-shim@^5.0.0: - version "5.0.1" - resolved "https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" - integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== - -events@^3.3.0: - version "3.3.0" - resolved "https://registry.npmmirror.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -execa@^7.0.0: - version "7.1.1" - resolved "https://registry.npmmirror.com/execa/-/execa-7.1.1.tgz#3eb3c83d239488e7b409d48e8813b76bb55c9c43" - integrity sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.1" - human-signals "^4.3.0" - is-stream "^3.0.0" - merge-stream "^2.0.0" - npm-run-path "^5.1.0" - onetime "^6.0.0" - signal-exit "^3.0.7" - strip-final-newline "^3.0.0" - -expand-tilde@^2.0.0, expand-tilde@^2.0.2: - version "2.0.2" - resolved "https://registry.npmmirror.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" - integrity sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== - dependencies: - homedir-polyfill "^1.0.1" - -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-diff@^1.1.2, fast-diff@^1.2.0: - version "1.3.0" - resolved "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" - integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== - -fast-glob@^3.2.11, fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6: - version "2.0.6" - resolved "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fastest-levenshtein@^1.0.16: - version "1.0.16" - resolved "https://registry.npmmirror.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" - integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== - -fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== - dependencies: - reusify "^1.0.4" - -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== - dependencies: - escape-string-regexp "^1.0.5" - -figures@^3.0.0: - version "3.2.0" - resolved "https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - -figures@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/figures/-/figures-5.0.0.tgz#126cd055052dea699f8a54e8c9450e6ecfc44d5f" - integrity sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg== - dependencies: - escape-string-regexp "^5.0.0" - is-unicode-supported "^1.2.0" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-node-modules@^2.1.2: - version "2.1.3" - resolved "https://registry.npmmirror.com/find-node-modules/-/find-node-modules-2.1.3.tgz#3c976cff2ca29ee94b4f9eafc613987fc4c0ee44" - integrity sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg== - dependencies: - findup-sync "^4.0.0" - merge "^2.1.1" - -find-root@1.1.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" - integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== - -find-up@^2.0.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== - dependencies: - locate-path "^2.0.0" - -find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -find-up@^6.3.0: - version "6.3.0" - resolved "https://registry.npmmirror.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" - integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== - dependencies: - locate-path "^7.1.0" - path-exists "^5.0.0" - -find-versions@^5.1.0: - version "5.1.0" - resolved "https://registry.npmmirror.com/find-versions/-/find-versions-5.1.0.tgz#973f6739ce20f5e439a27eba8542a4b236c8e685" - integrity sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg== - dependencies: - semver-regex "^4.0.5" - -findup-sync@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/findup-sync/-/findup-sync-4.0.0.tgz#956c9cdde804052b881b428512905c4a5f2cdef0" - integrity sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ== - dependencies: - detect-file "^1.0.0" - is-glob "^4.0.0" - micromatch "^4.0.2" - resolve-dir "^1.0.1" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flatted@^3.1.0: - version "3.2.7" - resolved "https://registry.npmmirror.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" - integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== - -focus-trap@^7.4.3: - version "7.4.3" - resolved "https://registry.npmmirror.com/focus-trap/-/focus-trap-7.4.3.tgz#a3dae73d44df359eb92bbf37b18e173e813b16c5" - integrity sha512-BgSSbK4GPnS2VbtZ50VtOv1Sti6DIkj3+LkVjiWMNjLeAp1SH1UlLx3ULu/DCu4vq5R4/uvTm+zrvsMsuYmGLg== - dependencies: - tabbable "^6.1.2" - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -foreground-child@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53" - integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== - dependencies: - cross-spawn "^7.0.0" - signal-exit "^3.0.2" - -foreground-child@^3.1.0: - version "3.1.1" - resolved "https://registry.npmmirror.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" - integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== - dependencies: - cross-spawn "^7.0.0" - signal-exit "^4.0.1" - -from2@^2.3.0: - version "2.3.0" - resolved "https://registry.npmmirror.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" - integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== - dependencies: - inherits "^2.0.1" - readable-stream "^2.0.0" - -fromentries@^1.3.1: - version "1.3.2" - resolved "https://registry.npmmirror.com/fromentries/-/fromentries-1.3.2.tgz#e4bca6808816bf8f93b52750f1127f5a6fd86e3a" - integrity sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== - -fs-extra@9.1.0: - version "9.1.0" - resolved "https://registry.npmmirror.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== - dependencies: - at-least-node "^1.0.0" - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-extra@^11.0.0: - version "11.1.1" - resolved "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" - integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-minipass@^2.0.0, fs-minipass@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - -fs-minipass@^3.0.0, fs-minipass@^3.0.2: - version "3.0.2" - resolved "https://registry.npmmirror.com/fs-minipass/-/fs-minipass-3.0.2.tgz#5b383858efa8c1eb8c33b39e994f7e8555b8b3a3" - integrity sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g== - dependencies: - minipass "^5.0.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" - -functions-have-names@^1.2.2, functions-have-names@^1.2.3: - version "1.2.3" - resolved "https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -gauge@^4.0.3: - version "4.0.4" - resolved "https://registry.npmmirror.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" - integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.3" - console-control-strings "^1.1.0" - has-unicode "^2.0.1" - signal-exit "^3.0.7" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.5" - -gauge@^5.0.0: - version "5.0.1" - resolved "https://registry.npmmirror.com/gauge/-/gauge-5.0.1.tgz#1efc801b8ff076b86ef3e9a7a280a975df572112" - integrity sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.3" - console-control-strings "^1.1.0" - has-unicode "^2.0.1" - signal-exit "^4.0.1" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.5" - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-func-name@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" - integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: - version "1.2.1" - resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" - -get-stream@^6.0.0, get-stream@^6.0.1: - version "6.0.1" - resolved "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -git-cz@^4.9.0: - version "4.9.0" - resolved "https://registry.npmmirror.com/git-cz/-/git-cz-4.9.0.tgz#c0604ff85b37046d51fd85e265040032c9617bf2" - integrity sha512-cSRL8IIOXU7UFLdbziCYqg8f8InwLwqHezkiRHNSph7oZqGv0togId1kMTfKil6gzK0VaSXeVBb4oDl0fQCHiw== - -git-log-parser@^1.2.0: - version "1.2.0" - resolved "https://registry.npmmirror.com/git-log-parser/-/git-log-parser-1.2.0.tgz#2e6a4c1b13fc00028207ba795a7ac31667b9fd4a" - integrity sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA== - dependencies: - argv-formatter "~1.0.0" - spawn-error-forwarder "~1.0.0" - split2 "~1.0.0" - stream-combiner2 "~1.1.1" - through2 "~2.0.0" - traverse "~0.6.6" - -git-raw-commits@^2.0.11: - version "2.0.11" - resolved "https://registry.npmmirror.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" - integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== - dependencies: - dargs "^7.0.0" - lodash "^4.17.15" - meow "^8.0.0" - split2 "^3.0.0" - through2 "^4.0.0" - -glob-parent@^5.1.2: - version "5.1.2" - resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.2: - version "6.0.2" - resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob@7.2.3, glob@^7.1.3, glob@^7.1.4: - version "7.2.3" - resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -glob@^10.2.2, glob@^10.2.4, glob@^10.2.5: - version "10.2.5" - resolved "https://registry.npmmirror.com/glob/-/glob-10.2.5.tgz#73c1850ac8f077810d8370ba414b382ad1a86083" - integrity sha512-Gj+dFYPZ5hc5dazjXzB0iHg2jKWJZYMjITXYPBRQ/xc2Buw7H0BINknRTwURJ6IC6MEFpYbLvtgVb3qD+DwyuA== - dependencies: - foreground-child "^3.1.0" - jackspeak "^2.0.3" - minimatch "^9.0.0" - minipass "^5.0.0 || ^6.0.2" - path-scurry "^1.7.0" - -glob@^8.0.1, glob@^8.0.3: - version "8.1.0" - resolved "https://registry.npmmirror.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - -global-dirs@^0.1.1: - version "0.1.1" - resolved "https://registry.npmmirror.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" - integrity sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg== - dependencies: - ini "^1.3.4" - -global-modules@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== - dependencies: - global-prefix "^1.0.1" - is-windows "^1.0.1" - resolve-dir "^1.0.0" - -global-prefix@^1.0.1: - version "1.0.2" - resolved "https://registry.npmmirror.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" - integrity sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg== - dependencies: - expand-tilde "^2.0.2" - homedir-polyfill "^1.0.1" - ini "^1.3.4" - is-windows "^1.0.1" - which "^1.2.14" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.19.0: - version "13.20.0" - resolved "https://registry.npmmirror.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== - dependencies: - type-fest "^0.20.2" - -globalthis@^1.0.3: - version "1.0.3" - resolved "https://registry.npmmirror.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" - integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== - dependencies: - define-properties "^1.1.3" - -globby@^11.1.0: - version "11.1.0" - resolved "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -globby@^13.1.4: - version "13.1.4" - resolved "https://registry.npmmirror.com/globby/-/globby-13.1.4.tgz#2f91c116066bcec152465ba36e5caa4a13c01317" - integrity sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g== - dependencies: - dir-glob "^3.0.1" - fast-glob "^3.2.11" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^4.0.0" - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -graceful-fs@4.2.10: - version "4.2.10" - resolved "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== - -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.6: - version "4.2.11" - resolved "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" - integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== - -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== - -graphemer@^1.4.0: - version "1.4.0" - resolved "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" - integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== - -handlebars@^4.7.7: - version "4.7.7" - resolved "https://registry.npmmirror.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" - integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== - dependencies: - minimist "^1.2.5" - neo-async "^2.6.0" - source-map "^0.6.1" - wordwrap "^1.0.0" - optionalDependencies: - uglify-js "^3.1.4" - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash-sum@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" - integrity sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA== - -he@^1.2.0: - version "1.2.0" - resolved "https://registry.npmmirror.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -homedir-polyfill@^1.0.1: - version "1.0.3" - resolved "https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== - dependencies: - parse-passwd "^1.0.0" - -hook-std@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/hook-std/-/hook-std-3.0.0.tgz#47038a01981e07ce9d83a6a3b2eb98cad0f7bd58" - integrity sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw== - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.1: - version "4.1.0" - resolved "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -hosted-git-info@^6.0.0, hosted-git-info@^6.1.1: - version "6.1.1" - resolved "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-6.1.1.tgz#629442c7889a69c05de604d52996b74fe6f26d58" - integrity sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w== - dependencies: - lru-cache "^7.5.1" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -http-cache-semantics@^4.1.0, http-cache-semantics@^4.1.1: - version "4.1.1" - resolved "https://registry.npmmirror.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" - integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== - -http-proxy-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== - dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" - -http-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz#e9096c5afd071a3fce56e6252bb321583c124673" - integrity sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ== - dependencies: - agent-base "^7.1.0" - debug "^4.3.4" - -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -https-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-7.0.0.tgz#75cb70d04811685667183b31ab158d006750418a" - integrity sha512-0euwPCRyAPSgGdzD1IVN9nJYHtBhJwb6XPfbpQcYbPCwrBidX6GzxmchnaF4sfF/jPb74Ojx5g4yTg3sixlyPw== - dependencies: - agent-base "^7.0.2" - debug "4" - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -human-signals@^4.3.0: - version "4.3.1" - resolved "https://registry.npmmirror.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" - integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.npmmirror.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -husky@^8.0.3: - version "8.0.3" - resolved "https://registry.npmmirror.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184" - integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg== - -iconv-lite@^0.4.24: - version "0.4.24" - resolved "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@^0.6.2: - version "0.6.3" - resolved "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" - integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== - dependencies: - safer-buffer ">= 2.1.2 < 3.0.0" - -ieee754@^1.1.13, ieee754@^1.2.1: - version "1.2.1" - resolved "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore-walk@^6.0.0: - version "6.0.3" - resolved "https://registry.npmmirror.com/ignore-walk/-/ignore-walk-6.0.3.tgz#0fcdb6decaccda35e308a7b0948645dd9523b7bb" - integrity sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA== - dependencies: - minimatch "^9.0.0" - -ignore@^5.2.0: - version "5.2.4" - resolved "https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== - -import-fresh@^3.0.0, import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-from@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2" - integrity sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ== - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -indent-string@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/indent-string/-/indent-string-5.0.0.tgz#4fd2980fccaf8622d14c64d694f4cf33c81951a5" - integrity sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.npmmirror.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@^1.3.4, ini@~1.3.0: - version "1.3.8" - resolved "https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -ini@^4.1.0: - version "4.1.1" - resolved "https://registry.npmmirror.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1" - integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== - -init-package-json@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/init-package-json/-/init-package-json-5.0.0.tgz#030cf0ea9c84cfc1b0dc2e898b45d171393e4b40" - integrity sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw== - dependencies: - npm-package-arg "^10.0.0" - promzard "^1.0.0" - read "^2.0.0" - read-package-json "^6.0.0" - semver "^7.3.5" - validate-npm-package-license "^3.0.4" - validate-npm-package-name "^5.0.0" - -inquirer@8.2.5: - version "8.2.5" - resolved "https://registry.npmmirror.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" - integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== - dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.1" - cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" - lodash "^4.17.21" - mute-stream "0.0.8" - ora "^5.4.1" - run-async "^2.4.0" - rxjs "^7.5.5" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" - wrap-ansi "^7.0.0" - -internal-slot@^1.0.5: - version "1.0.5" - resolved "https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" - integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== - dependencies: - get-intrinsic "^1.2.0" - has "^1.0.3" - side-channel "^1.0.4" - -into-stream@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/into-stream/-/into-stream-7.0.0.tgz#d1a211e146be8acfdb84dabcbf00fe8205e72936" - integrity sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw== - dependencies: - from2 "^2.3.0" - p-is-promise "^3.0.0" - -ip-regex@^4.1.0: - version "4.3.0" - resolved "https://registry.npmmirror.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" - integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q== - -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== - -is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: - version "3.0.2" - resolved "https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" - integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.0" - is-typed-array "^1.1.10" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-builtin-module@^3.2.1: - version "3.2.1" - resolved "https://registry.npmmirror.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169" - integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== - dependencies: - builtin-modules "^3.3.0" - -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: - version "1.2.7" - resolved "https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-cidr@^4.0.2: - version "4.0.2" - resolved "https://registry.npmmirror.com/is-cidr/-/is-cidr-4.0.2.tgz#94c7585e4c6c77ceabf920f8cde51b8c0fda8814" - integrity sha512-z4a1ENUajDbEl/Q6/pVBpTR1nBjjEE1X7qb7bmWYanNnPoKAvUCPFKeXV6Fe4mgTkWKBqiHIcwsI3SndiO5FeA== - dependencies: - cidr-regex "^3.1.1" - -is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.8.1: - version "2.12.1" - resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" - integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-expression@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/is-expression/-/is-expression-3.0.0.tgz#39acaa6be7fd1f3471dc42c7416e61c24317ac9f" - integrity sha512-vyMeQMq+AiH5uUnoBfMTwf18tO3bM6k1QXBE9D6ueAAquEfCZe3AJPtud9g6qS0+4X8xA7ndpZiDyeb2l2qOBw== - dependencies: - acorn "~4.0.2" - object-assign "^4.0.1" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-fullwidth-code-point@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" - integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: - version "4.0.3" - resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-interactive@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" - integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== - -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - -is-module@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" - integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== - -is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== - -is-path-inside@^3.0.3: - version "3.0.3" - resolved "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-plain-object@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" - integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== - -is-promise@^2.0.0: - version "2.2.2" - resolved "https://registry.npmmirror.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" - integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== - -is-reference@1.2.1: - version "1.2.1" - resolved "https://registry.npmmirror.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" - integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== - dependencies: - "@types/estree" "*" - -is-regex@^1.0.3, is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -is-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" - integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-text-path@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" - integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== - dependencies: - text-extensions "^1.0.0" - -is-typed-array@^1.1.10, is-typed-array@^1.1.9: - version "1.1.10" - resolved "https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" - integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - -is-unicode-supported@^0.1.0: - version "0.1.0" - resolved "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" - integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - -is-unicode-supported@^1.2.0: - version "1.3.0" - resolved "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz#d824984b616c292a2e198207d4a609983842f714" - integrity sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ== - -is-utf8@^0.2.1: - version "0.2.1" - resolved "https://registry.npmmirror.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -is-windows@^1.0.1: - version "1.0.2" - resolved "https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -issue-parser@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/issue-parser/-/issue-parser-6.0.0.tgz#b1edd06315d4f2044a9755daf85fdafde9b4014a" - integrity sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA== - dependencies: - lodash.capitalize "^4.2.1" - lodash.escaperegexp "^4.1.2" - lodash.isplainobject "^4.0.6" - lodash.isstring "^4.0.1" - lodash.uniqby "^4.7.0" - -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.npmmirror.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-reports@^3.1.4: - version "3.1.5" - resolved "https://registry.npmmirror.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" - integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jackspeak@^2.0.3: - version "2.2.0" - resolved "https://registry.npmmirror.com/jackspeak/-/jackspeak-2.2.0.tgz#497cbaedc902ec3f31d5d61be804d2364ff9ddad" - integrity sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ== - dependencies: - "@isaacs/cliui" "^8.0.2" - optionalDependencies: - "@pkgjs/parseargs" "^0.11.0" - -java-properties@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/java-properties/-/java-properties-1.0.2.tgz#ccd1fa73907438a5b5c38982269d0e771fe78211" - integrity sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ== - -js-cookie@^3.0.5: - version "3.0.5" - resolved "https://registry.npmmirror.com/js-cookie/-/js-cookie-3.0.5.tgz#0b7e2fd0c01552c58ba86e0841f94dc2557dcdbc" - integrity sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw== - -js-string-escape@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" - integrity sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg== - -js-stringify@^1.0.1: - version "1.0.2" - resolved "https://registry.npmmirror.com/js-stringify/-/js-stringify-1.0.2.tgz#1736fddfd9724f28a3682adc6230ae7e4e9679db" - integrity sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g== - -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -js2xmlparser@^4.0.2: - version "4.0.2" - resolved "https://registry.npmmirror.com/js2xmlparser/-/js2xmlparser-4.0.2.tgz#2a1fdf01e90585ef2ae872a01bc169c6a8d5e60a" - integrity sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA== - dependencies: - xmlcreate "^2.0.4" - -jsdoc@^4.0.2: - version "4.0.2" - resolved "https://registry.npmmirror.com/jsdoc/-/jsdoc-4.0.2.tgz#a1273beba964cf433ddf7a70c23fd02c3c60296e" - integrity sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg== - dependencies: - "@babel/parser" "^7.20.15" - "@jsdoc/salty" "^0.2.1" - "@types/markdown-it" "^12.2.3" - bluebird "^3.7.2" - catharsis "^0.9.0" - escape-string-regexp "^2.0.0" - js2xmlparser "^4.0.2" - klaw "^3.0.0" - markdown-it "^12.3.2" - markdown-it-anchor "^8.4.1" - marked "^4.0.10" - mkdirp "^1.0.4" - requizzle "^0.2.3" - strip-json-comments "^3.1.0" - underscore "~1.13.2" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -json-parse-better-errors@^1.0.1: - version "1.0.2" - resolved "https://registry.npmmirror.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" - integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-parse-even-better-errors@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz#2cb2ee33069a78870a0c7e3da560026b89669cf7" - integrity sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json-stringify-nice@^1.1.4: - version "1.1.4" - resolved "https://registry.npmmirror.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67" - integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw== - -json-stringify-safe@^5.0.1: - version "5.0.1" - resolved "https://registry.npmmirror.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" - integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== - -json5@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" - integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== - dependencies: - minimist "^1.2.0" - -json5@^2.2.2: - version "2.2.3" - resolved "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -jsonc-parser@^3.2.0: - version "3.2.0" - resolved "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" - integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -jsonparse@^1.2.0, jsonparse@^1.3.1: - version "1.3.1" - resolved "https://registry.npmmirror.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" - integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== - -jsonwebtoken@^9.0.0: - version "9.0.0" - resolved "https://registry.npmmirror.com/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz#d0faf9ba1cc3a56255fe49c0961a67e520c1926d" - integrity sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw== - dependencies: - jws "^3.2.2" - lodash "^4.17.21" - ms "^2.1.1" - semver "^7.3.8" - -jstransformer@1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/jstransformer/-/jstransformer-1.0.0.tgz#ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3" - integrity sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A== - dependencies: - is-promise "^2.0.0" - promise "^7.0.1" - -just-diff-apply@^5.2.0: - version "5.5.0" - resolved "https://registry.npmmirror.com/just-diff-apply/-/just-diff-apply-5.5.0.tgz#771c2ca9fa69f3d2b54e7c3f5c1dfcbcc47f9f0f" - integrity sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw== - -just-diff@^6.0.0: - version "6.0.2" - resolved "https://registry.npmmirror.com/just-diff/-/just-diff-6.0.2.tgz#03b65908543ac0521caf6d8eb85035f7d27ea285" - integrity sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA== - -jwa@^1.4.1: - version "1.4.1" - resolved "https://registry.npmmirror.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a" - integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== - dependencies: - buffer-equal-constant-time "1.0.1" - ecdsa-sig-formatter "1.0.11" - safe-buffer "^5.0.1" - -jws@^3.2.2: - version "3.2.2" - resolved "https://registry.npmmirror.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304" - integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== - dependencies: - jwa "^1.4.1" - safe-buffer "^5.0.1" - -kind-of@^3.0.2: - version "3.2.2" - resolved "https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== - dependencies: - is-buffer "^1.1.5" - -kind-of@^6.0.3: - version "6.0.3" - resolved "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -klaw@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/klaw/-/klaw-3.0.0.tgz#b11bec9cf2492f06756d6e809ab73a2910259146" - integrity sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g== - dependencies: - graceful-fs "^4.1.9" - -lazy-cache@^1.0.3: - version "1.0.4" - resolved "https://registry.npmmirror.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" - integrity sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -libnpmaccess@^7.0.2: - version "7.0.2" - resolved "https://registry.npmmirror.com/libnpmaccess/-/libnpmaccess-7.0.2.tgz#7f056c8c933dd9c8ba771fa6493556b53c5aac52" - integrity sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw== - dependencies: - npm-package-arg "^10.1.0" - npm-registry-fetch "^14.0.3" - -libnpmdiff@^5.0.17: - version "5.0.17" - resolved "https://registry.npmmirror.com/libnpmdiff/-/libnpmdiff-5.0.17.tgz#365ca61d34ddb39bfd20f5cc13a273d02313d27e" - integrity sha512-wptFvhrX+5dsjicG+D14j1dXWZUg4+vWDuL/m/8puZcrWhD3rdl7IunLmnw6eVQoep8EtxHv4DpARkQsW9xiqw== - dependencies: - "@npmcli/arborist" "^6.2.9" - "@npmcli/disparity-colors" "^3.0.0" - "@npmcli/installed-package-contents" "^2.0.2" - binary-extensions "^2.2.0" - diff "^5.1.0" - minimatch "^9.0.0" - npm-package-arg "^10.1.0" - pacote "^15.0.8" - tar "^6.1.13" - -libnpmexec@^5.0.17: - version "5.0.17" - resolved "https://registry.npmmirror.com/libnpmexec/-/libnpmexec-5.0.17.tgz#46f628688da8c92aeb2ea79333edbea464c46dd5" - integrity sha512-HGO8XiNWojyxb//LHsXmYuDWehPi/NuGsrNTu9VeRp/WNT5ijq2p219nLRu8ZBxGlBFCkLj8AbVRj1lmIFPObA== - dependencies: - "@npmcli/arborist" "^6.2.9" - "@npmcli/run-script" "^6.0.0" - chalk "^4.1.0" - ci-info "^3.7.1" - npm-package-arg "^10.1.0" - npmlog "^7.0.1" - pacote "^15.0.8" - proc-log "^3.0.0" - read "^2.0.0" - read-package-json-fast "^3.0.2" - semver "^7.3.7" - walk-up-path "^3.0.1" - -libnpmfund@^4.0.17: - version "4.0.17" - resolved "https://registry.npmmirror.com/libnpmfund/-/libnpmfund-4.0.17.tgz#200dd7867c156b1ef2a2d9898a0c4a3afc90657b" - integrity sha512-7cOf67KxpSNK/g5mWy3LWojxgXwuXHw62gGyeDSH7wVOUahD9pZPKqt5jwHtfiFgSOe9Lf51lcVIaeAS3wekqg== - dependencies: - "@npmcli/arborist" "^6.2.9" - -libnpmhook@^9.0.3: - version "9.0.3" - resolved "https://registry.npmmirror.com/libnpmhook/-/libnpmhook-9.0.3.tgz#5dbd6a146feb7e11993d36a26f750ae2347bb1d9" - integrity sha512-wMZe58sI7KLhg0+nUWZW5KdMfjNNcOIIbkoP19BDHYoUF9El7eeUWkGNxUGzpHkPKiGoQ1z/v6CYin4deebeuw== - dependencies: - aproba "^2.0.0" - npm-registry-fetch "^14.0.3" - -libnpmorg@^5.0.4: - version "5.0.4" - resolved "https://registry.npmmirror.com/libnpmorg/-/libnpmorg-5.0.4.tgz#94eec2b84fbef736457eb27894c972ae6f5cac82" - integrity sha512-YqYXLMAN0Y1eJH4w3hUFN9648xfSdvJANMsdeZTOWJOW4Pqp8qapJFzQdqCfUkg+tEuQmnaFQQKXvkMZC51+Mw== - dependencies: - aproba "^2.0.0" - npm-registry-fetch "^14.0.3" - -libnpmpack@^5.0.17: - version "5.0.17" - resolved "https://registry.npmmirror.com/libnpmpack/-/libnpmpack-5.0.17.tgz#b73e16bd0ee6486b35ea69cb566131f8d0f32ce2" - integrity sha512-JvYZc3lLnZcbcmG9vOnbvGMd4Qfu4fQTi9zGlGn0KOUKUsWvkUGJYQwVHiW0/6r1yyn8kQ7/tCPj2+Ubz1njtQ== - dependencies: - "@npmcli/arborist" "^6.2.9" - "@npmcli/run-script" "^6.0.0" - npm-package-arg "^10.1.0" - pacote "^15.0.8" - -libnpmpublish@^7.2.0: - version "7.2.0" - resolved "https://registry.npmmirror.com/libnpmpublish/-/libnpmpublish-7.2.0.tgz#5f079fe9b699fd956fdbb129718f92e9c131b0e6" - integrity sha512-8541kM4954q63VHdYTjCfMic2cAzPgMwktgiK9gcIH9CyhiZdrhVuLit0i3iJMl2NsWKdkR9gGxdtYnMjKoOKg== - dependencies: - ci-info "^3.6.1" - 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.4.0" - ssri "^10.0.1" - -libnpmsearch@^6.0.2: - version "6.0.2" - resolved "https://registry.npmmirror.com/libnpmsearch/-/libnpmsearch-6.0.2.tgz#b6a531a312855dd3bf84dd273b1033dd09b4cbec" - integrity sha512-p+5BF19AvnVg8mcIQhy6yWhI6jHQRVMYaIaKeITEfYAffWsqbottA/WZdMtHL76hViC6SFM1WdclM1w5eAIa1g== - dependencies: - npm-registry-fetch "^14.0.3" - -libnpmteam@^5.0.3: - version "5.0.3" - resolved "https://registry.npmmirror.com/libnpmteam/-/libnpmteam-5.0.3.tgz#196657e9d87c0cc914c44fee588ad2b838074a3c" - integrity sha512-7XOGhi45s+ml6TyrhJUTyrErcoDMKGKfEtiTEco4ofU7BGGAUOalVztKMVLLJgJOOXdIAIlzCHqkTXEuSiyCiA== - dependencies: - aproba "^2.0.0" - npm-registry-fetch "^14.0.3" - -libnpmversion@^4.0.2: - version "4.0.2" - resolved "https://registry.npmmirror.com/libnpmversion/-/libnpmversion-4.0.2.tgz#cad9cd1b287fcf9576a64edfe71491b49a65d06f" - integrity sha512-n1X70mFHv8Piy4yos+MFWUARSkTbyV5cdsHScaIkuwYvRAF/s2VtYScDzWB4Oe8uNEuGNdjiRR1E/Dh1tMvv6g== - dependencies: - "@npmcli/git" "^4.0.1" - "@npmcli/run-script" "^6.0.0" - json-parse-even-better-errors "^3.0.0" - proc-log "^3.0.0" - semver "^7.3.7" - -lilconfig@2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" - integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -lines-and-columns@^2.0.3: - version "2.0.3" - resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b" - integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== - -linkify-it@^3.0.1: - version "3.0.3" - resolved "https://registry.npmmirror.com/linkify-it/-/linkify-it-3.0.3.tgz#a98baf44ce45a550efb4d49c769d07524cc2fa2e" - integrity sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== - dependencies: - uc.micro "^1.0.1" - -lint-staged@^13.2.2: - version "13.2.2" - resolved "https://registry.npmmirror.com/lint-staged/-/lint-staged-13.2.2.tgz#5e711d3139c234f73402177be2f8dd312e6508ca" - integrity sha512-71gSwXKy649VrSU09s10uAT0rWCcY3aewhMaHyl2N84oBk4Xs9HgxvUp3AYu+bNsK4NrOYYxvSgg7FyGJ+jGcA== - dependencies: - chalk "5.2.0" - cli-truncate "^3.1.0" - commander "^10.0.0" - debug "^4.3.4" - execa "^7.0.0" - lilconfig "2.1.0" - listr2 "^5.0.7" - micromatch "^4.0.5" - normalize-path "^3.0.0" - object-inspect "^1.12.3" - pidtree "^0.6.0" - string-argv "^0.3.1" - yaml "^2.2.2" - -listr2@^5.0.7: - version "5.0.8" - resolved "https://registry.npmmirror.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23" - integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA== - dependencies: - cli-truncate "^2.1.0" - colorette "^2.0.19" - log-update "^4.0.0" - p-map "^4.0.0" - rfdc "^1.3.0" - rxjs "^7.8.0" - through "^2.3.8" - wrap-ansi "^7.0.0" - -load-json-file@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" - integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== - dependencies: - graceful-fs "^4.1.2" - parse-json "^4.0.0" - pify "^3.0.0" - strip-bom "^3.0.0" - -local-pkg@^0.4.3: - version "0.4.3" - resolved "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" - integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== - -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" - integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== - dependencies: - p-locate "^2.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -locate-path@^7.1.0: - version "7.2.0" - resolved "https://registry.npmmirror.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" - integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== - dependencies: - p-locate "^6.0.0" - -lodash-es@^4.17.21: - version "4.17.21" - resolved "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== - -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.npmmirror.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== - -lodash.capitalize@^4.2.1: - version "4.2.1" - resolved "https://registry.npmmirror.com/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz#f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9" - integrity sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw== - -lodash.escaperegexp@^4.1.2: - version "4.1.2" - resolved "https://registry.npmmirror.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347" - integrity sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw== - -lodash.get@^4.4.2: - version "4.4.2" - resolved "https://registry.npmmirror.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" - integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== - -lodash.isequal@^4.5.0: - version "4.5.0" - resolved "https://registry.npmmirror.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" - integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== - -lodash.isfunction@^3.0.9: - version "3.0.9" - resolved "https://registry.npmmirror.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" - integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== - -lodash.ismatch@^4.4.0: - version "4.4.0" - resolved "https://registry.npmmirror.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" - integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== - -lodash.isplainobject@^4.0.6: - version "4.0.6" - resolved "https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" - integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== - -lodash.isstring@^4.0.1: - version "4.0.1" - resolved "https://registry.npmmirror.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" - integrity sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw== - -lodash.kebabcase@^4.1.1: - version "4.1.1" - resolved "https://registry.npmmirror.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" - integrity sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== - -lodash.map@^4.5.1: - version "4.6.0" - resolved "https://registry.npmmirror.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" - integrity sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q== - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.mergewith@^4.6.2: - version "4.6.2" - resolved "https://registry.npmmirror.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" - integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== - -lodash.snakecase@^4.1.1: - version "4.1.1" - resolved "https://registry.npmmirror.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" - integrity sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw== - -lodash.startcase@^4.4.0: - version "4.4.0" - resolved "https://registry.npmmirror.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" - integrity sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== - -lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.npmmirror.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" - integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== - -lodash.uniqby@^4.7.0: - version "4.7.0" - resolved "https://registry.npmmirror.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302" - integrity sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww== - -lodash.upperfirst@^4.3.1: - version "4.3.1" - resolved "https://registry.npmmirror.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" - integrity sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== - -lodash@4.17.21, lodash@^4.17.15, lodash@^4.17.21, lodash@^4.17.4: - version "4.17.21" - resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-symbols@^4.1.0: - version "4.1.0" - resolved "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" - integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== - dependencies: - chalk "^4.1.0" - is-unicode-supported "^0.1.0" - -log-update@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" - integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== - dependencies: - ansi-escapes "^4.3.0" - cli-cursor "^3.1.0" - slice-ansi "^4.0.0" - wrap-ansi "^6.2.0" - -longest@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" - integrity sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg== - -longest@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/longest/-/longest-2.0.1.tgz#781e183296aa94f6d4d916dc335d0d17aefa23f8" - integrity sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q== - -loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== - dependencies: - js-tokens "^3.0.0 || ^4.0.0" - -loupe@^2.3.1, loupe@^2.3.6: - version "2.3.6" - resolved "https://registry.npmmirror.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53" - integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== - dependencies: - get-func-name "^2.0.0" - -lru-cache@^4.1.5: - version "4.1.5" - resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -lru-cache@^5.1.1: - version "5.1.1" - resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" - integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== - dependencies: - yallist "^3.0.2" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: - version "7.18.3" - resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" - integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== - -lru-cache@^9.0.0, lru-cache@^9.1.1: - version "9.1.1" - resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-9.1.1.tgz#c58a93de58630b688de39ad04ef02ef26f1902f1" - integrity sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A== - -magic-string@^0.27.0: - version "0.27.0" - resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.27.0.tgz#e4a3413b4bab6d98d2becffd48b4a257effdbbf3" - integrity sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA== - dependencies: - "@jridgewell/sourcemap-codec" "^1.4.13" - -magic-string@^0.30.0: - version "0.30.0" - resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.0.tgz#fd58a4748c5c4547338a424e90fa5dd17f4de529" - integrity sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ== - dependencies: - "@jridgewell/sourcemap-codec" "^1.4.13" - -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -make-fetch-happen@^10.0.3: - version "10.2.1" - resolved "https://registry.npmmirror.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" - integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== - dependencies: - agentkeepalive "^4.2.1" - cacache "^16.1.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-fetch "^2.0.3" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.3" - promise-retry "^2.0.1" - socks-proxy-agent "^7.0.0" - ssri "^9.0.0" - -make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.0, make-fetch-happen@^11.1.1: - version "11.1.1" - resolved "https://registry.npmmirror.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f" - integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== - dependencies: - agentkeepalive "^4.2.1" - cacache "^17.0.0" - http-cache-semantics "^4.1.1" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^7.7.1" - minipass "^5.0.0" - minipass-fetch "^3.0.0" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.3" - promise-retry "^2.0.1" - socks-proxy-agent "^7.0.0" - ssri "^10.0.0" - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== - -map-obj@^4.0.0: - version "4.3.0" - resolved "https://registry.npmmirror.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== - -mark.js@8.11.1: - version "8.11.1" - resolved "https://registry.npmmirror.com/mark.js/-/mark.js-8.11.1.tgz#180f1f9ebef8b0e638e4166ad52db879beb2ffc5" - integrity sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ== - -markdown-it-anchor@^8.4.1: - version "8.6.7" - resolved "https://registry.npmmirror.com/markdown-it-anchor/-/markdown-it-anchor-8.6.7.tgz#ee6926daf3ad1ed5e4e3968b1740eef1c6399634" - integrity sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA== - -markdown-it@^12.3.2: - version "12.3.2" - resolved "https://registry.npmmirror.com/markdown-it/-/markdown-it-12.3.2.tgz#bf92ac92283fe983fe4de8ff8abfb5ad72cd0c90" - integrity sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== - dependencies: - argparse "^2.0.1" - entities "~2.1.0" - linkify-it "^3.0.1" - mdurl "^1.0.1" - uc.micro "^1.0.5" - -marked-terminal@^5.1.1: - version "5.2.0" - resolved "https://registry.npmmirror.com/marked-terminal/-/marked-terminal-5.2.0.tgz#c5370ec2bae24fb2b34e147b731c94fa933559d3" - integrity sha512-Piv6yNwAQXGFjZSaiNljyNFw7jKDdGrw70FSbtxEyldLsyeuV5ZHm/1wW++kWbrOF1VPnUgYOhB2oLL0ZpnekA== - dependencies: - ansi-escapes "^6.2.0" - cardinal "^2.1.1" - chalk "^5.2.0" - cli-table3 "^0.6.3" - node-emoji "^1.11.0" - supports-hyperlinks "^2.3.0" - -marked@^4.0.10: - version "4.3.0" - resolved "https://registry.npmmirror.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3" - integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A== - -marked@^5.0.0: - version "5.1.0" - resolved "https://registry.npmmirror.com/marked/-/marked-5.1.0.tgz#cf51f03ba04dfb3469774029fd0106d258658767" - integrity sha512-z3/nBe7aTI8JDszlYLk7dDVNpngjw0o1ZJtrA9kIfkkHcIF+xH7mO23aISl4WxP83elU+MFROgahqdpd05lMEQ== - -md5-hex@^3.0.1: - version "3.0.1" - resolved "https://registry.npmmirror.com/md5-hex/-/md5-hex-3.0.1.tgz#be3741b510591434b2784d79e556eefc2c9a8e5c" - integrity sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw== - dependencies: - blueimp-md5 "^2.10.0" - -mdurl@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== - -meow@^8.0.0, meow@^8.1.2: - version "8.1.2" - resolved "https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" - integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -merge@^2.1.1: - version "2.1.1" - resolved "https://registry.npmmirror.com/merge/-/merge-2.1.1.tgz#59ef4bf7e0b3e879186436e8481c06a6c162ca98" - integrity sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w== - -micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: - version "4.0.5" - resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/mime/-/mime-3.0.0.tgz#b374550dca3a0c18443b0c950a6a58f1931cf7a7" - integrity sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-fn@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" - integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.npmmirror.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minami@^1.2.3: - version "1.2.3" - resolved "https://registry.npmmirror.com/minami/-/minami-1.2.3.tgz#99b6dcdfb2f0a54da1c9c8f7aa3a327787aaf9f8" - integrity sha512-3f2QqqbUC1usVux0FkQMFYB73yd9JIxmHSn1dWQacizL6hOUaNu6mA3KxZ9SfiCc4qgcgq+5XP59+hP7URa1Dw== - -minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^5.0.1: - version "5.1.6" - resolved "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" - integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== - dependencies: - brace-expansion "^2.0.1" - -minimatch@^9.0.0: - version "9.0.0" - resolved "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" - integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== - dependencies: - brace-expansion "^2.0.1" - -minimist-options@4.1.0: - version "4.1.0" - resolved "https://registry.npmmirror.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@1.2.7: - version "1.2.7" - resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" - integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== - -minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-fetch@^2.0.3: - version "2.1.2" - resolved "https://registry.npmmirror.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" - integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== - dependencies: - minipass "^3.1.6" - minipass-sized "^1.0.3" - minizlib "^2.1.2" - optionalDependencies: - encoding "^0.1.13" - -minipass-fetch@^3.0.0: - version "3.0.3" - resolved "https://registry.npmmirror.com/minipass-fetch/-/minipass-fetch-3.0.3.tgz#d9df70085609864331b533c960fd4ffaa78d15ce" - integrity sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ== - dependencies: - minipass "^5.0.0" - minipass-sized "^1.0.3" - minizlib "^2.1.2" - optionalDependencies: - encoding "^0.1.13" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.npmmirror.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-json-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" - integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== - dependencies: - jsonparse "^1.3.1" - minipass "^3.0.0" - -minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.npmmirror.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.npmmirror.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: - version "3.3.6" - resolved "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -"minipass@^5.0.0 || ^6.0.2": - version "6.0.2" - resolved "https://registry.npmmirror.com/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81" - integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w== - -minisearch@^6.1.0: - version "6.1.0" - resolved "https://registry.npmmirror.com/minisearch/-/minisearch-6.1.0.tgz#6e74e743dbd0e88fa5ca52fef2391e0aa7055252" - integrity sha512-PNxA/X8pWk+TiqPbsoIYH0GQ5Di7m6326/lwU/S4mlo4wGQddIcf/V//1f9TB0V4j59b57b+HZxt8h3iMROGvg== - -minizlib@^2.1.1, minizlib@^2.1.2: - version "2.1.2" - resolved "https://registry.npmmirror.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mkdirp@^1.0.3, mkdirp@^1.0.4: - version "1.0.4" - resolved "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mlly@^1.2.0: - version "1.2.1" - resolved "https://registry.npmmirror.com/mlly/-/mlly-1.2.1.tgz#cd50151f5712b651c5c379085157bcdff661133b" - integrity sha512-1aMEByaWgBPEbWV2BOPEMySRrzl7rIHXmQxam4DM8jVjalTQDjpN2ZKOLUrwyhfZQO7IXHml2StcHMhooDeEEQ== - dependencies: - acorn "^8.8.2" - pathe "^1.1.0" - pkg-types "^1.0.3" - ufo "^1.1.2" - -modify-values@^1.0.0, modify-values@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" - integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@^2.0.0, ms@^2.1.1, ms@^2.1.2: - version "2.1.3" - resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -mute-stream@0.0.8: - version "0.0.8" - resolved "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - -mute-stream@~1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e" - integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA== - -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== - -natural-compare-lite@^1.4.0: - version "1.4.0" - resolved "https://registry.npmmirror.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" - integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -negotiator@^0.6.3: - version "0.6.3" - resolved "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - -neo-async@^2.6.0, neo-async@^2.6.1: - version "2.6.2" - resolved "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== - -nerf-dart@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/nerf-dart/-/nerf-dart-1.0.0.tgz#e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a" - integrity sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g== - -node-dir@^0.1.10: - version "0.1.17" - resolved "https://registry.npmmirror.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" - integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== - dependencies: - minimatch "^3.0.2" - -node-emoji@^1.11.0: - version "1.11.0" - resolved "https://registry.npmmirror.com/node-emoji/-/node-emoji-1.11.0.tgz#69a0150e6946e2f115e9d7ea4df7971e2628301c" - integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== - dependencies: - lodash "^4.17.21" - -node-fetch@^2.6.7: - version "2.6.11" - resolved "https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" - integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== - dependencies: - whatwg-url "^5.0.0" - -node-gyp@^9.0.0, node-gyp@^9.3.1: - version "9.3.1" - resolved "https://registry.npmmirror.com/node-gyp/-/node-gyp-9.3.1.tgz#1e19f5f290afcc9c46973d68700cbd21a96192e4" - integrity sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg== - dependencies: - env-paths "^2.2.0" - glob "^7.1.4" - graceful-fs "^4.2.6" - make-fetch-happen "^10.0.3" - nopt "^6.0.0" - npmlog "^6.0.0" - rimraf "^3.0.2" - semver "^7.3.5" - tar "^6.1.2" - which "^2.0.2" - -node-releases@^2.0.8: - version "2.0.10" - resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" - integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== - -nopt@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" - integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== - dependencies: - abbrev "^1.0.0" - -nopt@^7.0.0, nopt@^7.1.0: - version "7.1.0" - resolved "https://registry.npmmirror.com/nopt/-/nopt-7.1.0.tgz#91f6a3366182176e72ecab93a09c19b63b485f28" - integrity sha512-ZFPLe9Iu0tnx7oWhFxAo4s7QTn8+NNDDxYNaKLjE7Dp0tbakQ3M1QhQzsnzXHQBTUO3K9BmwaxnyO8Ayn2I95Q== - dependencies: - abbrev "^2.0.0" - -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0, normalize-package-data@^3.0.2: - version "3.0.3" - resolved "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== - dependencies: - hosted-git-info "^4.0.1" - is-core-module "^2.5.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-5.0.0.tgz#abcb8d7e724c40d88462b84982f7cbf6859b4588" - integrity sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q== - dependencies: - hosted-git-info "^6.0.0" - is-core-module "^2.8.1" - semver "^7.3.5" - validate-npm-package-license "^3.0.4" - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -normalize-url@^8.0.0: - version "8.0.0" - resolved "https://registry.npmmirror.com/normalize-url/-/normalize-url-8.0.0.tgz#593dbd284f743e8dcf6a5ddf8fadff149c82701a" - integrity sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw== - -npm-audit-report@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/npm-audit-report/-/npm-audit-report-4.0.0.tgz#dfffdb6464a7799d3d30e067ae1943982cf45f69" - integrity sha512-k2o5476sLrp94b6Gl819YzlS7LAdb8lgE6yQCysBEji5E3WoUdRve6tiVMLKAPPdLfItU4kOSUycWS5HFTrbug== - dependencies: - chalk "^4.0.0" - -npm-bundled@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/npm-bundled/-/npm-bundled-3.0.0.tgz#7e8e2f8bb26b794265028491be60321a25a39db7" - integrity sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ== - dependencies: - npm-normalize-package-bin "^3.0.0" - -npm-install-checks@^6.0.0, npm-install-checks@^6.1.1: - version "6.1.1" - resolved "https://registry.npmmirror.com/npm-install-checks/-/npm-install-checks-6.1.1.tgz#b459b621634d06546664207fde16810815808db1" - integrity sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw== - dependencies: - semver "^7.1.1" - -npm-normalize-package-bin@^3.0.0, npm-normalize-package-bin@^3.0.1: - version "3.0.1" - resolved "https://registry.npmmirror.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" - integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== - -npm-package-arg@^10.0.0, npm-package-arg@^10.1.0: - version "10.1.0" - resolved "https://registry.npmmirror.com/npm-package-arg/-/npm-package-arg-10.1.0.tgz#827d1260a683806685d17193073cc152d3c7e9b1" - integrity sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA== - dependencies: - hosted-git-info "^6.0.0" - proc-log "^3.0.0" - semver "^7.3.5" - validate-npm-package-name "^5.0.0" - -npm-packlist@^7.0.0: - version "7.0.4" - resolved "https://registry.npmmirror.com/npm-packlist/-/npm-packlist-7.0.4.tgz#033bf74110eb74daf2910dc75144411999c5ff32" - integrity sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q== - dependencies: - ignore-walk "^6.0.0" - -npm-pick-manifest@^8.0.0, npm-pick-manifest@^8.0.1: - version "8.0.1" - resolved "https://registry.npmmirror.com/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz#c6acd97d1ad4c5dbb80eac7b386b03ffeb289e5f" - integrity sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA== - dependencies: - npm-install-checks "^6.0.0" - npm-normalize-package-bin "^3.0.0" - npm-package-arg "^10.0.0" - semver "^7.3.5" - -npm-profile@^7.0.1: - version "7.0.1" - resolved "https://registry.npmmirror.com/npm-profile/-/npm-profile-7.0.1.tgz#a37dae08b22e662ece2c6e08946f9fcd9fdef663" - integrity sha512-VReArOY/fCx5dWL66cbJ2OMogTQAVVQA//8jjmjkarboki3V7UJ0XbGFW+khRwiAJFQjuH0Bqr/yF7Y5RZdkMQ== - dependencies: - npm-registry-fetch "^14.0.0" - proc-log "^3.0.0" - -npm-registry-fetch@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0.5: - version "14.0.5" - resolved "https://registry.npmmirror.com/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz#fe7169957ba4986a4853a650278ee02e568d115d" - integrity sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA== - dependencies: - make-fetch-happen "^11.0.0" - minipass "^5.0.0" - minipass-fetch "^3.0.0" - minipass-json-stream "^1.0.1" - minizlib "^2.1.2" - npm-package-arg "^10.0.0" - proc-log "^3.0.0" - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -npm-run-path@^5.1.0: - version "5.1.0" - resolved "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" - integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== - dependencies: - path-key "^4.0.0" - -npm-user-validate@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/npm-user-validate/-/npm-user-validate-2.0.0.tgz#7b69bbbff6f7992a1d9a8968d52fd6b6db5431b6" - integrity sha512-sSWeqAYJ2dUPStJB+AEj0DyLRltr/f6YNcvCA7phkB8/RMLMnVsQ41GMwHo/ERZLYNDsyB2wPm7pZo1mqPOl7Q== - -npm@^9.5.0: - version "9.6.7" - resolved "https://registry.npmmirror.com/npm/-/npm-9.6.7.tgz#11902e3f00d4175bbd305e646ed82c2a14f1f588" - integrity sha512-xwkU1hSZl6Qrkfw3fhxVmMfNWu0A67+aZZs5gz/LoehCeAPkVhQDB90Z2NFoPSI1KpfBWCJ6Bp28wXzv5U5/2g== - dependencies: - "@isaacs/string-locale-compare" "^1.1.0" - "@npmcli/arborist" "^6.2.9" - "@npmcli/config" "^6.1.7" - "@npmcli/map-workspaces" "^3.0.4" - "@npmcli/package-json" "^3.1.0" - "@npmcli/run-script" "^6.0.2" - abbrev "^2.0.0" - archy "~1.0.0" - cacache "^17.1.2" - chalk "^4.1.2" - ci-info "^3.8.0" - cli-columns "^4.0.0" - cli-table3 "^0.6.3" - columnify "^1.6.0" - fastest-levenshtein "^1.0.16" - fs-minipass "^3.0.2" - glob "^10.2.4" - graceful-fs "^4.2.11" - hosted-git-info "^6.1.1" - ini "^4.1.0" - 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.17" - libnpmexec "^5.0.17" - libnpmfund "^4.0.17" - libnpmhook "^9.0.3" - libnpmorg "^5.0.4" - libnpmpack "^5.0.17" - libnpmpublish "^7.2.0" - libnpmsearch "^6.0.2" - libnpmteam "^5.0.3" - libnpmversion "^4.0.2" - make-fetch-happen "^11.1.1" - minimatch "^9.0.0" - minipass "^5.0.0" - minipass-pipeline "^1.2.4" - ms "^2.1.2" - node-gyp "^9.3.1" - nopt "^7.1.0" - npm-audit-report "^4.0.0" - npm-install-checks "^6.1.1" - npm-package-arg "^10.1.0" - npm-pick-manifest "^8.0.1" - npm-profile "^7.0.1" - npm-registry-fetch "^14.0.5" - npm-user-validate "^2.0.0" - npmlog "^7.0.1" - p-map "^4.0.0" - pacote "^15.1.3" - parse-conflict-json "^3.0.1" - proc-log "^3.0.0" - qrcode-terminal "^0.12.0" - read "^2.1.0" - read-package-json "^6.0.3" - read-package-json-fast "^3.0.2" - semver "^7.5.1" - ssri "^10.0.4" - tar "^6.1.14" - text-table "~0.2.0" - tiny-relative-date "^1.3.0" - treeverse "^3.0.0" - validate-npm-package-name "^5.0.0" - which "^3.0.1" - write-file-atomic "^5.0.1" - -npmlog@^6.0.0: - version "6.0.2" - resolved "https://registry.npmmirror.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" - integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== - dependencies: - are-we-there-yet "^3.0.0" - console-control-strings "^1.1.0" - gauge "^4.0.3" - set-blocking "^2.0.0" - -npmlog@^7.0.1: - version "7.0.1" - resolved "https://registry.npmmirror.com/npmlog/-/npmlog-7.0.1.tgz#7372151a01ccb095c47d8bf1d0771a4ff1f53ac8" - integrity sha512-uJ0YFk/mCQpLBt+bxN88AKd+gyqZvZDbtiNxk6Waqcj2aPRyfVx8ITawkyQynxUagInjdYT1+qj4NfA5KJJUxg== - dependencies: - are-we-there-yet "^4.0.0" - console-control-strings "^1.1.0" - gauge "^5.0.0" - set-blocking "^2.0.0" - -object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" - integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== - -object-inspect@^1.12.3, object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -object.values@^1.1.6: - version "1.1.6" - resolved "https://registry.npmmirror.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" - integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -octokit@^2.0.19: - version "2.0.19" - resolved "https://registry.npmmirror.com/octokit/-/octokit-2.0.19.tgz#924ede002302f965c2399eb582f23ee8c74660ba" - integrity sha512-hSloK4MK78QGbAuBrtIir0bsxMoRVZE5CkwKSbSRH9lqv2hx9EwhCxtPqEF+BtHqLXkXdfUaGkJMyMBotYno+A== - dependencies: - "@octokit/app" "^13.1.5" - "@octokit/core" "^4.2.1" - "@octokit/oauth-app" "^4.2.1" - "@octokit/plugin-paginate-rest" "^6.1.0" - "@octokit/plugin-rest-endpoint-methods" "^7.1.1" - "@octokit/plugin-retry" "^4.1.3" - "@octokit/plugin-throttling" "^5.2.2" - "@octokit/types" "^9.2.2" - -once@^1.3.0, once@^1.4.0: - version "1.4.0" - resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.0, onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -onetime@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" - integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== - dependencies: - mimic-fn "^4.0.0" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.npmmirror.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.3" - -ora@^5.4.1: - version "5.4.1" - resolved "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" - integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== - dependencies: - bl "^4.1.0" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-spinners "^2.5.0" - is-interactive "^1.0.0" - is-unicode-supported "^0.1.0" - log-symbols "^4.1.0" - strip-ansi "^6.0.0" - wcwidth "^1.0.1" - -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - -p-each-series@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/p-each-series/-/p-each-series-3.0.0.tgz#d1aed5e96ef29864c897367a7d2a628fdc960806" - integrity sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw== - -p-filter@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/p-filter/-/p-filter-3.0.0.tgz#ce50e03b24b23930e11679ab8694bd09a2d7ed35" - integrity sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg== - dependencies: - p-map "^5.1.0" - -p-is-promise@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971" - integrity sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ== - -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== - dependencies: - p-try "^1.0.0" - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-limit@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" - integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== - dependencies: - yocto-queue "^1.0.0" - -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== - dependencies: - p-limit "^1.1.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-locate@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" - integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== - dependencies: - p-limit "^4.0.0" - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-map@^5.1.0: - version "5.5.0" - resolved "https://registry.npmmirror.com/p-map/-/p-map-5.5.0.tgz#054ca8ca778dfa4cf3f8db6638ccb5b937266715" - integrity sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg== - dependencies: - aggregate-error "^4.0.0" - -p-reduce@^2.0.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a" - integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== - -p-reduce@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/p-reduce/-/p-reduce-3.0.0.tgz#f11773794792974bd1f7a14c72934248abff4160" - integrity sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q== - -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -pacote@^15.0.0, pacote@^15.0.8, pacote@^15.1.3: - version "15.2.0" - resolved "https://registry.npmmirror.com/pacote/-/pacote-15.2.0.tgz#0f0dfcc3e60c7b39121b2ac612bf8596e95344d3" - integrity sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA== - dependencies: - "@npmcli/git" "^4.0.0" - "@npmcli/installed-package-contents" "^2.0.1" - "@npmcli/promise-spawn" "^6.0.1" - "@npmcli/run-script" "^6.0.0" - cacache "^17.0.0" - fs-minipass "^3.0.0" - minipass "^5.0.0" - npm-package-arg "^10.0.0" - npm-packlist "^7.0.0" - npm-pick-manifest "^8.0.0" - npm-registry-fetch "^14.0.0" - proc-log "^3.0.0" - promise-retry "^2.0.1" - read-package-json "^6.0.0" - read-package-json-fast "^3.0.0" - sigstore "^1.3.0" - ssri "^10.0.0" - tar "^6.1.11" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-conflict-json@^3.0.0, parse-conflict-json@^3.0.1: - version "3.0.1" - resolved "https://registry.npmmirror.com/parse-conflict-json/-/parse-conflict-json-3.0.1.tgz#67dc55312781e62aa2ddb91452c7606d1969960c" - integrity sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw== - dependencies: - json-parse-even-better-errors "^3.0.0" - just-diff "^6.0.0" - just-diff-apply "^5.2.0" - -parse-json@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" - integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== - dependencies: - error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" - -parse-json@^5.0.0, parse-json@^5.2.0: - version "5.2.0" - resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse-json@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/parse-json/-/parse-json-7.0.0.tgz#51c0713f233b804eb5adee3ef1e75d3243e0ff06" - integrity sha512-kP+TQYAzAiVnzOlWOe0diD6L35s9bJh0SCn95PIbZFKrOYuIRQsQkeWEYxzVDuHTt9V9YqvYCJ2Qo4z9wdfZPw== - dependencies: - "@babel/code-frame" "^7.21.4" - error-ex "^1.3.2" - json-parse-even-better-errors "^3.0.0" - lines-and-columns "^2.0.3" - type-fest "^3.8.0" - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-exists@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" - integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-key@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" - integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-scurry@^1.7.0: - version "1.9.2" - resolved "https://registry.npmmirror.com/path-scurry/-/path-scurry-1.9.2.tgz#90f9d296ac5e37e608028e28a447b11d385b3f63" - integrity sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg== - dependencies: - lru-cache "^9.1.1" - minipass "^5.0.0 || ^6.0.2" - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pathe@^1.1.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" - integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== - -pathval@^1.1.1: - version "1.1.1" - resolved "https://registry.npmmirror.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" - integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pidtree@^0.6.0: - version "0.6.0" - resolved "https://registry.npmmirror.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" - integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== - -pify@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" - integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== - -pkg-conf@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" - integrity sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g== - dependencies: - find-up "^2.0.0" - load-json-file "^4.0.0" - -pkg-types@^1.0.3: - version "1.0.3" - resolved "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" - integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== - dependencies: - jsonc-parser "^3.2.0" - mlly "^1.2.0" - pathe "^1.1.0" - -postcss-selector-parser@^6.0.10: - version "6.0.13" - resolved "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" - integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== - dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" - -postcss@^8.1.10, postcss@^8.4.23: - version "8.4.23" - resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" - integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== - dependencies: - nanoid "^3.3.6" - picocolors "^1.0.0" - source-map-js "^1.0.2" - -preact@^10.0.0: - version "10.15.0" - resolved "https://registry.npmmirror.com/preact/-/preact-10.15.0.tgz#14bae0afe3547ca9d45d22fda2a4266462d31cf3" - integrity sha512-nZSa8M2R2m1n7nJSBlzDpxRJaIsejrTO1vlFbdpFvyC8qM1iU+On2y0otfoUm6SRB5o0lF0CKDFxg6grEFU0iQ== - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - -prettier@^2.8.8: - version "2.8.8" - resolved "https://registry.npmmirror.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== - -pretty-format@^27.5.1: - version "27.5.1" - resolved "https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" - integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== - dependencies: - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^17.0.1" - -private@^0.1.8: - version "0.1.8" - resolved "https://registry.npmmirror.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - -proc-log@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8" - integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.npmmirror.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== - -promise-all-reject-late@^1.0.0: - version "1.0.1" - resolved "https://registry.npmmirror.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz#f8ebf13483e5ca91ad809ccc2fcf25f26f8643c2" - integrity sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw== - -promise-call-limit@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/promise-call-limit/-/promise-call-limit-1.0.2.tgz#f64b8dd9ef7693c9c7613e7dfe8d6d24de3031ea" - integrity sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA== - -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - -promise-retry@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" - integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== - dependencies: - err-code "^2.0.2" - retry "^0.12.0" - -promise@^7.0.1: - version "7.3.1" - resolved "https://registry.npmmirror.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - -promzard@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/promzard/-/promzard-1.0.0.tgz#3246f8e6c9895a77c0549cefb65828ac0f6c006b" - integrity sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig== - dependencies: - read "^2.0.0" - -prop-types@^15.7.2: - version "15.8.1" - resolved "https://registry.npmmirror.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" - integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== - dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.13.1" - -proto-list@~1.2.1: - version "1.2.4" - resolved "https://registry.npmmirror.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" - integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== - -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== - -pug-attrs@^2.0.4: - version "2.0.4" - resolved "https://registry.npmmirror.com/pug-attrs/-/pug-attrs-2.0.4.tgz#b2f44c439e4eb4ad5d4ef25cac20d18ad28cc336" - integrity sha512-TaZ4Z2TWUPDJcV3wjU3RtUXMrd3kM4Wzjbe3EWnSsZPsJ3LDI0F3yCnf2/W7PPFF+edUFQ0HgDL1IoxSz5K8EQ== - dependencies: - constantinople "^3.0.1" - js-stringify "^1.0.1" - pug-runtime "^2.0.5" - -pug-code-gen@^2.0.2: - version "2.0.3" - resolved "https://registry.npmmirror.com/pug-code-gen/-/pug-code-gen-2.0.3.tgz#122eb9ada9b5bf601705fe15aaa0a7d26bc134ab" - integrity sha512-r9sezXdDuZJfW9J91TN/2LFbiqDhmltTFmGpHTsGdrNGp3p4SxAjjXEfnuK2e4ywYsRIVP0NeLbSAMHUcaX1EA== - dependencies: - constantinople "^3.1.2" - doctypes "^1.1.0" - js-stringify "^1.0.1" - pug-attrs "^2.0.4" - pug-error "^1.3.3" - pug-runtime "^2.0.5" - void-elements "^2.0.1" - with "^5.0.0" - -pug-error@^1.3.3: - version "1.3.3" - resolved "https://registry.npmmirror.com/pug-error/-/pug-error-1.3.3.tgz#f342fb008752d58034c185de03602dd9ffe15fa6" - integrity sha512-qE3YhESP2mRAWMFJgKdtT5D7ckThRScXRwkfo+Erqga7dyJdY3ZquspprMCj/9sJ2ijm5hXFWQE/A3l4poMWiQ== - -pug-filters@^3.1.1: - version "3.1.1" - resolved "https://registry.npmmirror.com/pug-filters/-/pug-filters-3.1.1.tgz#ab2cc82db9eeccf578bda89130e252a0db026aa7" - integrity sha512-lFfjNyGEyVWC4BwX0WyvkoWLapI5xHSM3xZJFUhx4JM4XyyRdO8Aucc6pCygnqV2uSgJFaJWW3Ft1wCWSoQkQg== - dependencies: - clean-css "^4.1.11" - constantinople "^3.0.1" - jstransformer "1.0.0" - pug-error "^1.3.3" - pug-walk "^1.1.8" - resolve "^1.1.6" - uglify-js "^2.6.1" - -pug-lexer@^4.1.0: - version "4.1.0" - resolved "https://registry.npmmirror.com/pug-lexer/-/pug-lexer-4.1.0.tgz#531cde48c7c0b1fcbbc2b85485c8665e31489cfd" - integrity sha512-i55yzEBtjm0mlplW4LoANq7k3S8gDdfC6+LThGEvsK4FuobcKfDAwt6V4jKPH9RtiE3a2Akfg5UpafZ1OksaPA== - dependencies: - character-parser "^2.1.1" - is-expression "^3.0.0" - pug-error "^1.3.3" - -pug-linker@^3.0.6: - version "3.0.6" - resolved "https://registry.npmmirror.com/pug-linker/-/pug-linker-3.0.6.tgz#f5bf218b0efd65ce6670f7afc51658d0f82989fb" - integrity sha512-bagfuHttfQOpANGy1Y6NJ+0mNb7dD2MswFG2ZKj22s8g0wVsojpRlqveEQHmgXXcfROB2RT6oqbPYr9EN2ZWzg== - dependencies: - pug-error "^1.3.3" - pug-walk "^1.1.8" - -pug-load@^2.0.12: - version "2.0.12" - resolved "https://registry.npmmirror.com/pug-load/-/pug-load-2.0.12.tgz#d38c85eb85f6e2f704dea14dcca94144d35d3e7b" - integrity sha512-UqpgGpyyXRYgJs/X60sE6SIf8UBsmcHYKNaOccyVLEuT6OPBIMo6xMPhoJnqtB3Q3BbO4Z3Bjz5qDsUWh4rXsg== - dependencies: - object-assign "^4.1.0" - pug-walk "^1.1.8" - -pug-parser@^5.0.1: - version "5.0.1" - resolved "https://registry.npmmirror.com/pug-parser/-/pug-parser-5.0.1.tgz#03e7ada48b6840bd3822f867d7d90f842d0ffdc9" - integrity sha512-nGHqK+w07p5/PsPIyzkTQfzlYfuqoiGjaoqHv1LjOv2ZLXmGX1O+4Vcvps+P4LhxZ3drYSljjq4b+Naid126wA== - dependencies: - pug-error "^1.3.3" - token-stream "0.0.1" - -pug-runtime@^2.0.5: - version "2.0.5" - resolved "https://registry.npmmirror.com/pug-runtime/-/pug-runtime-2.0.5.tgz#6da7976c36bf22f68e733c359240d8ae7a32953a" - integrity sha512-P+rXKn9un4fQY77wtpcuFyvFaBww7/91f3jHa154qU26qFAnOe6SW1CbIDcxiG5lLK9HazYrMCCuDvNgDQNptw== - -pug-strip-comments@^1.0.4: - version "1.0.4" - resolved "https://registry.npmmirror.com/pug-strip-comments/-/pug-strip-comments-1.0.4.tgz#cc1b6de1f6e8f5931cf02ec66cdffd3f50eaf8a8" - integrity sha512-i5j/9CS4yFhSxHp5iKPHwigaig/VV9g+FgReLJWWHEHbvKsbqL0oP/K5ubuLco6Wu3Kan5p7u7qk8A4oLLh6vw== - dependencies: - pug-error "^1.3.3" - -pug-walk@^1.1.8: - version "1.1.8" - resolved "https://registry.npmmirror.com/pug-walk/-/pug-walk-1.1.8.tgz#b408f67f27912f8c21da2f45b7230c4bd2a5ea7a" - integrity sha512-GMu3M5nUL3fju4/egXwZO0XLi6fW/K3T3VTgFQ14GxNi8btlxgT5qZL//JwZFm/2Fa64J/PNS8AZeys3wiMkVA== - -pug@^2.0.3: - version "2.0.4" - resolved "https://registry.npmmirror.com/pug/-/pug-2.0.4.tgz#ee7682ec0a60494b38d48a88f05f3b0ac931377d" - integrity sha512-XhoaDlvi6NIzL49nu094R2NA6P37ijtgMDuWE+ofekDChvfKnzFal60bhSdiy8y2PBO6fmz3oMEIcfpBVRUdvw== - dependencies: - pug-code-gen "^2.0.2" - pug-filters "^3.1.1" - pug-lexer "^4.1.0" - pug-linker "^3.0.6" - pug-load "^2.0.12" - pug-parser "^5.0.1" - pug-runtime "^2.0.5" - pug-strip-comments "^1.0.4" - -punycode@^2.1.0: - version "2.3.0" - resolved "https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -q@^1.5.1: - version "1.5.1" - resolved "https://registry.npmmirror.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" - integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== - -qrcode-terminal@^0.12.0: - version "0.12.0" - resolved "https://registry.npmmirror.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz#bb5b699ef7f9f0505092a3748be4464fe71b5819" - integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ== - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.npmmirror.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - -randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== - dependencies: - safe-buffer "^5.1.0" - -rc@^1.2.8: - version "1.2.8" - resolved "https://registry.npmmirror.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -react-ace@^9.5.0: - version "9.5.0" - resolved "https://registry.npmmirror.com/react-ace/-/react-ace-9.5.0.tgz#b6c32b70d404dd821a7e01accc2d76da667ff1f7" - integrity sha512-4l5FgwGh6K7A0yWVMQlPIXDItM4Q9zzXRqOae8KkCl6MkOob7sC1CzHxZdOGvV+QioKWbX2p5HcdOVUv6cAdSg== - dependencies: - ace-builds "^1.4.13" - diff-match-patch "^1.0.5" - lodash.get "^4.4.2" - lodash.isequal "^4.5.0" - prop-types "^15.7.2" - -react-docgen@^5.4.0: - version "5.4.3" - resolved "https://registry.npmmirror.com/react-docgen/-/react-docgen-5.4.3.tgz#7d297f73b977d0c7611402e5fc2a168acf332b26" - integrity sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA== - dependencies: - "@babel/core" "^7.7.5" - "@babel/generator" "^7.12.11" - "@babel/runtime" "^7.7.6" - ast-types "^0.14.2" - commander "^2.19.0" - doctrine "^3.0.0" - estree-to-babel "^3.1.0" - neo-async "^2.6.1" - node-dir "^0.1.10" - strip-indent "^3.0.0" - -react-frame-component@^5.2.1: - version "5.2.6" - resolved "https://registry.npmmirror.com/react-frame-component/-/react-frame-component-5.2.6.tgz#0d9991d251ff1f7177479d8f370deea06b824b79" - integrity sha512-CwkEM5VSt6nFwZ1Op8hi3JB5rPseZlmnp5CGiismVTauE6S4Jsc4TNMlT0O7Cts4WgIC3ZBAQ2p1Mm9XgLbj+w== - -react-is@^16.13.1: - version "16.13.1" - resolved "https://registry.npmmirror.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - -react-is@^17.0.1: - version "17.0.2" - resolved "https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" - integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== - -read-cmd-shim@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz#640a08b473a49043e394ae0c7a34dd822c73b9bb" - integrity sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q== - -read-package-json-fast@^3.0.0, read-package-json-fast@^3.0.2: - version "3.0.2" - resolved "https://registry.npmmirror.com/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz#394908a9725dc7a5f14e70c8e7556dff1d2b1049" - integrity sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw== - dependencies: - json-parse-even-better-errors "^3.0.0" - npm-normalize-package-bin "^3.0.0" - -read-package-json@^6.0.0, read-package-json@^6.0.3: - version "6.0.3" - resolved "https://registry.npmmirror.com/read-package-json/-/read-package-json-6.0.3.tgz#726116b75e00eac2075240995f05681af4ca7122" - integrity sha512-4QbpReW4kxFgeBQ0vPAqh2y8sXEB3D4t3jsXbJKIhBiF80KT6XRo45reqwtftju5J6ru1ax06A2Gb/wM1qCOEQ== - dependencies: - glob "^10.2.2" - json-parse-even-better-errors "^3.0.0" - normalize-package-data "^5.0.0" - npm-normalize-package-bin "^3.0.0" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg-up@^9.0.0, read-pkg-up@^9.1.0: - version "9.1.0" - resolved "https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-9.1.0.tgz#38ca48e0bc6c6b260464b14aad9bcd4e5b1fbdc3" - integrity sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg== - dependencies: - find-up "^6.3.0" - read-pkg "^7.1.0" - type-fest "^2.5.0" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.npmmirror.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -read-pkg@^7.1.0: - version "7.1.0" - resolved "https://registry.npmmirror.com/read-pkg/-/read-pkg-7.1.0.tgz#438b4caed1ad656ba359b3e00fd094f3c427a43e" - integrity sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg== - dependencies: - "@types/normalize-package-data" "^2.4.1" - normalize-package-data "^3.0.2" - parse-json "^5.2.0" - type-fest "^2.0.0" - -read-pkg@^8.0.0: - version "8.0.0" - resolved "https://registry.npmmirror.com/read-pkg/-/read-pkg-8.0.0.tgz#78b93774c15a3f151b56d5790d5127a5cb9fc507" - integrity sha512-Ajb9oSjxXBw0YyOiwtQ2dKbAA/vMnUPnY63XcCk+mXo0BwIdQEMgZLZiMWGttQHcUhUgbK0mH85ethMPKXxziw== - dependencies: - "@types/normalize-package-data" "^2.4.1" - normalize-package-data "^5.0.0" - parse-json "^7.0.0" - type-fest "^3.8.0" - -read@^2.0.0, read@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/read/-/read-2.1.0.tgz#69409372c54fe3381092bc363a00650b6ac37218" - integrity sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ== - dependencies: - mute-stream "~1.0.0" - -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.4.0, readable-stream@^3.6.0: - version "3.6.2" - resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@~2.3.6: - version "2.3.8" - resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^4.1.0: - version "4.4.0" - resolved "https://registry.npmmirror.com/readable-stream/-/readable-stream-4.4.0.tgz#55ce132d60a988c460d75c631e9ccf6a7229b468" - integrity sha512-kDMOq0qLtxV9f/SQv522h8cxZBqNZXuXNyjyezmfAAuribMyVXziljpQ/uQhfE1XLg2/TLTW2DsnoE4VAi/krg== - dependencies: - abort-controller "^3.0.0" - buffer "^6.0.3" - events "^3.3.0" - process "^0.11.10" - -recast@^0.17.3: - version "0.17.6" - resolved "https://registry.npmmirror.com/recast/-/recast-0.17.6.tgz#64ae98d0d2dfb10ff92ff5fb9ffb7371823b69fa" - integrity sha512-yoQRMRrK1lszNtbkGyM4kN45AwylV5hMiuEveUBlxytUViWevjvX6w+tzJt1LH4cfUhWt4NZvy3ThIhu6+m5wQ== - dependencies: - ast-types "0.12.4" - esprima "~4.0.0" - private "^0.1.8" - source-map "~0.6.1" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - -redeyed@~2.1.0: - version "2.1.1" - resolved "https://registry.npmmirror.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b" - integrity sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ== - dependencies: - esprima "~4.0.0" - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== - -regenerator-runtime@^0.13.11: - version "0.13.11" - resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== - -regexp.prototype.flags@^1.4.3: - version "1.5.0" - resolved "https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" - integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - functions-have-names "^1.2.3" - -registry-auth-token@^5.0.0: - version "5.0.2" - resolved "https://registry.npmmirror.com/registry-auth-token/-/registry-auth-token-5.0.2.tgz#8b026cc507c8552ebbe06724136267e63302f756" - integrity sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ== - dependencies: - "@pnpm/npm-conf" "^2.1.0" - -repeat-string@^1.5.2: - version "1.6.1" - resolved "https://registry.npmmirror.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== - -requizzle@^0.2.3: - version "0.2.4" - resolved "https://registry.npmmirror.com/requizzle/-/requizzle-0.2.4.tgz#319eb658b28c370f0c20f968fa8ceab98c13d27c" - integrity sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw== - dependencies: - lodash "^4.17.21" - -resolve-dir@^1.0.0, resolve-dir@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" - integrity sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg== - dependencies: - expand-tilde "^2.0.0" - global-modules "^1.0.0" - -resolve-from@5.0.0, resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-global@1.0.0, resolve-global@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz#a2a79df4af2ca3f49bf77ef9ddacd322dad19255" - integrity sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw== - dependencies: - global-dirs "^0.1.1" - -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.22.1: - version "1.22.2" - resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" - integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== - dependencies: - is-core-module "^2.11.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -restore-cursor@^3.1.0: - version "3.1.0" - resolved "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" - integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -retry@^0.12.0: - version "0.12.0" - resolved "https://registry.npmmirror.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" - integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rfdc@^1.3.0: - version "1.3.0" - resolved "https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" - integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== - -right-align@^0.1.1: - version "0.1.3" - resolved "https://registry.npmmirror.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" - integrity sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg== - dependencies: - align-text "^0.1.1" - -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -rimraf@^5.0.1: - version "5.0.1" - resolved "https://registry.npmmirror.com/rimraf/-/rimraf-5.0.1.tgz#0881323ab94ad45fec7c0221f27ea1a142f3f0d0" - integrity sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg== - dependencies: - glob "^10.2.5" - -rollup@^3.21.0: - version "3.22.0" - resolved "https://registry.npmmirror.com/rollup/-/rollup-3.22.0.tgz#e6671baebdd473154ac7998bbc57faabcd7bba20" - integrity sha512-imsigcWor5Y/dC0rz2q0bBt9PabcL3TORry2hAa6O6BuMvY71bqHyfReAz5qyAqiQATD1m70qdntqBfBQjVWpQ== - optionalDependencies: - fsevents "~2.3.2" - -rollup@^3.25.1: - version "3.25.1" - resolved "https://registry.npmmirror.com/rollup/-/rollup-3.25.1.tgz#9fff79d22ff1a904b2b595a2fb9bc3793cb987d8" - integrity sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ== - optionalDependencies: - fsevents "~2.3.2" - -run-async@^2.4.0: - version "2.4.1" - resolved "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -rxjs@^7.5.5, rxjs@^7.8.0: - version "7.8.1" - resolved "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" - integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== - dependencies: - tslib "^2.1.0" - -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-regex-test@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" - integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - is-regex "^1.1.4" - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": - version "2.1.2" - resolved "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - -semantic-release@~21.0.5: - version "21.0.5" - resolved "https://registry.npmmirror.com/semantic-release/-/semantic-release-21.0.5.tgz#3a95c44df8c4cb0bdc4e483f3c14ba3d8f04f1bd" - integrity sha512-mCc7Hx9Ro/1Clk9tLLgwQIQuiEzx+1OX12EazvNysnx1VG4eaNJE9b9IyWtTxyFxaFYi7nM5VB5ZDVzheHTDPA== - dependencies: - "@semantic-release/commit-analyzer" "^10.0.0" - "@semantic-release/error" "^4.0.0" - "@semantic-release/github" "^9.0.0" - "@semantic-release/npm" "^10.0.2" - "@semantic-release/release-notes-generator" "^11.0.0" - aggregate-error "^4.0.1" - cosmiconfig "^8.0.0" - debug "^4.0.0" - env-ci "^9.0.0" - execa "^7.0.0" - figures "^5.0.0" - find-versions "^5.1.0" - get-stream "^6.0.0" - git-log-parser "^1.2.0" - hook-std "^3.0.0" - hosted-git-info "^6.0.0" - lodash-es "^4.17.21" - marked "^5.0.0" - marked-terminal "^5.1.1" - micromatch "^4.0.2" - p-each-series "^3.0.0" - p-reduce "^3.0.0" - read-pkg-up "^9.1.0" - resolve-from "^5.0.0" - semver "^7.3.2" - semver-diff "^4.0.0" - signale "^1.2.1" - yargs "^17.5.1" - -semver-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/semver-diff/-/semver-diff-4.0.0.tgz#3afcf5ed6d62259f5c72d0d5d50dffbdc9680df5" - integrity sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA== - dependencies: - semver "^7.3.5" - -semver-regex@^4.0.5: - version "4.0.5" - resolved "https://registry.npmmirror.com/semver-regex/-/semver-regex-4.0.5.tgz#fbfa36c7ba70461311f5debcb3928821eb4f9180" - integrity sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw== - -"semver@2 || 3 || 4 || 5": - version "5.7.1" - resolved "https://registry.npmmirror.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@7.5.0: - version "7.5.0" - resolved "https://registry.npmmirror.com/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0" - integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA== - dependencies: - lru-cache "^6.0.0" - -semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.0.0, semver@^7.1.1, semver@^7.1.2, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.1: - version "7.5.1" - resolved "https://registry.npmmirror.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" - integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== - dependencies: - lru-cache "^6.0.0" - -serialize-javascript@^6.0.1: - version "6.0.1" - resolved "https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" - integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== - dependencies: - randombytes "^2.1.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shiki@^0.14.2: - version "0.14.2" - resolved "https://registry.npmmirror.com/shiki/-/shiki-0.14.2.tgz#d51440800b701392b31ce2336036058e338247a1" - integrity sha512-ltSZlSLOuSY0M0Y75KA+ieRaZ0Trf5Wl3gutE7jzLuIcWxLp5i/uEnLoQWNvgKXQ5OMpGkJnVMRLAuzjc0LJ2A== - dependencies: - ansi-sequence-parser "^1.1.0" - jsonc-parser "^3.2.0" - vscode-oniguruma "^1.7.0" - vscode-textmate "^8.0.0" - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -siginfo@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/siginfo/-/siginfo-2.0.0.tgz#32e76c70b79724e3bb567cb9d543eb858ccfaf30" - integrity sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== - -signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: - version "3.0.7" - resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^4.0.1: - version "4.0.2" - resolved "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" - integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== - -signale@^1.2.1: - version "1.4.0" - resolved "https://registry.npmmirror.com/signale/-/signale-1.4.0.tgz#c4be58302fb0262ac00fc3d886a7c113759042f1" - integrity sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w== - dependencies: - chalk "^2.3.2" - figures "^2.0.0" - pkg-conf "^2.1.0" - -sigstore@^1.3.0, sigstore@^1.4.0: - version "1.5.2" - resolved "https://registry.npmmirror.com/sigstore/-/sigstore-1.5.2.tgz#8d4c2a549341211cb08c687999843edc48c1a94c" - integrity sha512-X95v6xAAooVpn7PaB94TDmFeSO5SBfCtB1R23fvzr36WTfjtkiiyOeei979nbTjc8nzh6FSLeltQZuODsm1EjQ== - dependencies: - "@sigstore/protobuf-specs" "^0.1.0" - make-fetch-happen "^11.0.1" - tuf-js "^1.1.3" - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slash@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" - integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== - -slice-ansi@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" - integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -slice-ansi@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" - integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== - dependencies: - ansi-styles "^6.0.0" - is-fullwidth-code-point "^4.0.0" - -smart-buffer@^4.2.0: - version "4.2.0" - resolved "https://registry.npmmirror.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" - integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== - -smob@^1.0.0: - version "1.1.0" - resolved "https://registry.npmmirror.com/smob/-/smob-1.1.0.tgz#eb07011f0bf293965a108b6d1265759ef5013d69" - integrity sha512-Rtrm1A5e/Yq53vgWinNSVkQ14UaGNdYzF5xaVqKXG4YBjTxkMdsx3bzpO8pD4hwf4O6JOi5/sAyFta0pLmKZOw== - -socks-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" - integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== - dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" - -socks@^2.6.2: - version "2.7.1" - resolved "https://registry.npmmirror.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== - dependencies: - ip "^2.0.0" - smart-buffer "^4.2.0" - -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== - -source-map-support@~0.5.20: - version "0.5.21" - resolved "https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: - version "0.6.1" - resolved "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -source-map@~0.5.1: - version "0.5.7" - resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - -spawn-error-forwarder@~1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz#1afd94738e999b0346d7b9fc373be55e07577029" - integrity sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g== - -spdx-correct@^3.0.0: - version "3.2.0" - resolved "https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" - integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.13" - resolved "https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5" - integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== - -split2@^3.0.0, split2@^3.2.2: - version "3.2.2" - resolved "https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" - integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== - dependencies: - readable-stream "^3.0.0" - -split2@~1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/split2/-/split2-1.0.0.tgz#52e2e221d88c75f9a73f90556e263ff96772b314" - integrity sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg== - dependencies: - through2 "~2.0.0" - -split@^1.0.0: - version "1.0.1" - resolved "https://registry.npmmirror.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" - integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== - dependencies: - through "2" - -ssri@^10.0.0, ssri@^10.0.1, ssri@^10.0.4: - version "10.0.4" - resolved "https://registry.npmmirror.com/ssri/-/ssri-10.0.4.tgz#5a20af378be586df139ddb2dfb3bf992cf0daba6" - integrity sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ== - dependencies: - minipass "^5.0.0" - -ssri@^9.0.0: - version "9.0.1" - resolved "https://registry.npmmirror.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" - integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== - dependencies: - minipass "^3.1.1" - -stackback@0.0.2: - version "0.0.2" - resolved "https://registry.npmmirror.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b" - integrity sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== - -std-env@^3.3.2: - version "3.3.3" - resolved "https://registry.npmmirror.com/std-env/-/std-env-3.3.3.tgz#a54f06eb245fdcfef53d56f3c0251f1d5c3d01fe" - integrity sha512-Rz6yejtVyWnVjC1RFvNmYL10kgjC49EOghxWn0RFqlCHGFpQx+Xe7yW3I4ceK1SGrWIGMjD5Kbue8W/udkbMJg== - -stream-combiner2@~1.1.1: - version "1.1.1" - resolved "https://registry.npmmirror.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz#fb4d8a1420ea362764e21ad4780397bebcb41cbe" - integrity sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw== - dependencies: - duplexer2 "~0.1.0" - readable-stream "^2.0.2" - -string-argv@^0.3.1: - version "0.3.2" - resolved "https://registry.npmmirror.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" - integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== - -"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: - version "5.1.2" - resolved "https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== - dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" - -string.prototype.trim@^1.2.7: - version "1.2.7" - resolved "https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" - integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimend@^1.0.6: - version "1.0.6" - resolved "https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" - integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimstart@^1.0.6: - version "1.0.6" - resolved "https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" - integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.0.1: - version "7.0.1" - resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" - integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== - dependencies: - ansi-regex "^6.0.1" - -strip-bom@4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-final-newline@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" - integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - -strip-literal@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/strip-literal/-/strip-literal-1.0.1.tgz#0115a332710c849b4e46497891fb8d585e404bd2" - integrity sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q== - dependencies: - acorn "^8.8.2" - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.3.0: - version "2.3.0" - resolved "https://registry.npmmirror.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" - integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -tabbable@^6.1.2: - version "6.1.2" - resolved "https://registry.npmmirror.com/tabbable/-/tabbable-6.1.2.tgz#b0d3ca81d582d48a80f71b267d1434b1469a3703" - integrity sha512-qCN98uP7i9z0fIS4amQ5zbGBOq+OSigYeGvPy7NDk8Y9yncqDZ9pRPgfsc2PJIVM9RrJj7GIfuRgmjoUU9zTHQ== - -tar@^6.1.11, tar@^6.1.13, tar@^6.1.14, tar@^6.1.2: - version "6.1.15" - resolved "https://registry.npmmirror.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69" - integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -temp-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" - integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== - -tempy@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/tempy/-/tempy-3.0.0.tgz#a6c0a15f5534a820e92c3e1369f1c1e87ebd6b68" - integrity sha512-B2I9X7+o2wOaW4r/CWMkpOO9mdiTRCxXNgob6iGvPmfPWgH/KyUD6Uy5crtWBxIBe3YrNZKR2lSzv1JJKWD4vA== - dependencies: - is-stream "^3.0.0" - temp-dir "^2.0.0" - type-fest "^2.12.2" - unique-string "^3.0.0" - -terser@^5.17.4: - version "5.17.4" - resolved "https://registry.npmmirror.com/terser/-/terser-5.17.4.tgz#b0c2d94897dfeba43213ed5f90ed117270a2c696" - integrity sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw== - dependencies: - "@jridgewell/source-map" "^0.3.2" - acorn "^8.5.0" - commander "^2.20.0" - source-map-support "~0.5.20" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-extensions@^1.0.0: - version "1.9.0" - resolved "https://registry.npmmirror.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" - integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== - -text-table@^0.2.0, text-table@~0.2.0: - version "0.2.0" - resolved "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -through2@^4.0.0: - version "4.0.2" - resolved "https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" - integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== - dependencies: - readable-stream "3" - -through2@~2.0.0: - version "2.0.5" - resolved "https://registry.npmmirror.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" - -through@2, "through@>=2.2.7 <3", through@^2.3.6, through@^2.3.8: - version "2.3.8" - resolved "https://registry.npmmirror.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -time-zone@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" - integrity sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA== - -tiny-relative-date@^1.3.0: - version "1.3.0" - resolved "https://registry.npmmirror.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07" - integrity sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A== - -tinybench@^2.5.0: - version "2.5.0" - resolved "https://registry.npmmirror.com/tinybench/-/tinybench-2.5.0.tgz#4711c99bbf6f3e986f67eb722fed9cddb3a68ba5" - integrity sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA== - -tinypool@^0.5.0: - version "0.5.0" - resolved "https://registry.npmmirror.com/tinypool/-/tinypool-0.5.0.tgz#3861c3069bf71e4f1f5aa2d2e6b3aaacc278961e" - integrity sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ== - -tinyspy@^2.1.0: - version "2.1.0" - resolved "https://registry.npmmirror.com/tinyspy/-/tinyspy-2.1.0.tgz#bd6875098f988728e6456cfd5ab8cc06498ecdeb" - integrity sha512-7eORpyqImoOvkQJCSkL0d0mB4NHHIFAy4b1u8PHdDa7SjGS2njzl6/lyGoZLm+eyYEtlUmFGE0rFj66SWxZgQQ== - -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - -to-fast-properties@^1.0.3: - version "1.0.3" - resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" - integrity sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -token-stream@0.0.1: - version "0.0.1" - resolved "https://registry.npmmirror.com/token-stream/-/token-stream-0.0.1.tgz#ceeefc717a76c4316f126d0b9dbaa55d7e7df01a" - integrity sha512-nfjOAu/zAWmX9tgwi5NRp7O7zTDUD1miHiB40klUnAh9qnL1iXdgzcz/i5dMaL5jahcBAaSfmNOBBJBLJW8TEg== - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -traverse@~0.6.6: - version "0.6.7" - resolved "https://registry.npmmirror.com/traverse/-/traverse-0.6.7.tgz#46961cd2d57dd8706c36664acde06a248f1173fe" - integrity sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg== - -treeverse@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/treeverse/-/treeverse-3.0.0.tgz#dd82de9eb602115c6ebd77a574aae67003cb48c8" - integrity sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ== - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.npmmirror.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -ts-map@^1.0.3: - version "1.0.3" - resolved "https://registry.npmmirror.com/ts-map/-/ts-map-1.0.3.tgz#1c4d218dec813d2103b7e04e4bcf348e1471c1ff" - integrity sha512-vDWbsl26LIcPGmDpoVzjEP6+hvHZkBkLW7JpvwbCv/5IYPJlsbzCVXY3wsCeAxAUeTclNOUZxnLdGh3VBD/J6w== - -ts-node@^10.8.1: - version "10.9.1" - resolved "https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b" - integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== - dependencies: - "@cspotcode/source-map-support" "^0.8.0" - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.2" - acorn "^8.4.1" - acorn-walk "^8.1.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - v8-compile-cache-lib "^3.0.1" - yn "3.1.1" - -tsconfig-paths@^3.14.1: - version "3.14.2" - resolved "https://registry.npmmirror.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" - integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@^2.0.1, tslib@^2.1.0: - version "2.5.2" - resolved "https://registry.npmmirror.com/tslib/-/tslib-2.5.2.tgz#1b6f07185c881557b0ffa84b111a0106989e8338" - integrity sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA== - -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -tuf-js@^1.1.3: - version "1.1.6" - resolved "https://registry.npmmirror.com/tuf-js/-/tuf-js-1.1.6.tgz#ad3e7a20237b83b51c2a8f9d1ddf093279a10fc2" - integrity sha512-CXwFVIsXGbVY4vFiWF7TJKWmlKJAT8TWkH4RmiohJRcDJInix++F0dznDmoVbtJNzZ8yLprKUG4YrDIhv3nBMg== - dependencies: - "@tufjs/models" "1.0.4" - debug "^4.3.4" - make-fetch-happen "^11.1.0" - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-detect@^4.0.0, type-detect@^4.0.5: - version "4.0.8" - resolved "https://registry.npmmirror.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -type-fest@^1.0.1: - version "1.4.0" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" - integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== - -type-fest@^2.0.0, type-fest@^2.12.2, type-fest@^2.5.0: - version "2.19.0" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" - integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== - -type-fest@^3.0.0, type-fest@^3.8.0: - version "3.10.0" - resolved "https://registry.npmmirror.com/type-fest/-/type-fest-3.10.0.tgz#d75f17a22be8816aea6315ab2739fe1c0c211863" - integrity sha512-hmAPf1datm+gt3c2mvu0sJyhFy6lTkIGf0GzyaZWxRLnabQfPUqg6tF95RPg6sLxKI7nFLGdFxBcf2/7+GXI+A== - -typed-array-length@^1.0.4: - version "1.0.4" - resolved "https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" - integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== - dependencies: - call-bind "^1.0.2" - for-each "^0.3.3" - is-typed-array "^1.1.9" - -typescript@^3.2.2: - version "3.9.10" - resolved "https://registry.npmmirror.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" - integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== - -typescript@^4.5.4: - version "4.9.5" - resolved "https://registry.npmmirror.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" - integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== - -"typescript@^4.6.4 || ^5.0.0": - version "5.0.4" - resolved "https://registry.npmmirror.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== - -typescript@^5.1.3: - version "5.1.3" - resolved "https://registry.npmmirror.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== - -uc.micro@^1.0.1, uc.micro@^1.0.5: - version "1.0.6" - resolved "https://registry.npmmirror.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" - integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== - -ufo@^1.1.2: - version "1.1.2" - resolved "https://registry.npmmirror.com/ufo/-/ufo-1.1.2.tgz#d0d9e0fa09dece0c31ffd57bd363f030a35cfe76" - integrity sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ== - -uglify-js@^2.6.1: - version "2.8.29" - resolved "https://registry.npmmirror.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" - integrity sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w== - dependencies: - source-map "~0.5.1" - yargs "~3.10.0" - optionalDependencies: - uglify-to-browserify "~1.0.0" - -uglify-js@^3.1.4: - version "3.17.4" - resolved "https://registry.npmmirror.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" - integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== - -uglify-to-browserify@~1.0.0: - version "1.0.2" - resolved "https://registry.npmmirror.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" - integrity sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -underscore@^1.13.2, underscore@~1.13.2: - version "1.13.6" - resolved "https://registry.npmmirror.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441" - integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== - -unique-filename@^2.0.0: - version "2.0.1" - resolved "https://registry.npmmirror.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" - integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== - dependencies: - unique-slug "^3.0.0" - -unique-filename@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" - integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== - dependencies: - unique-slug "^4.0.0" - -unique-slug@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" - integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== - dependencies: - imurmurhash "^0.1.4" - -unique-slug@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" - integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== - dependencies: - imurmurhash "^0.1.4" - -unique-string@^3.0.0: - version "3.0.0" - resolved "https://registry.npmmirror.com/unique-string/-/unique-string-3.0.0.tgz#84a1c377aff5fd7a8bc6b55d8244b2bd90d75b9a" - integrity sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== - dependencies: - crypto-random-string "^4.0.0" - -universal-github-app-jwt@^1.1.1: - version "1.1.1" - resolved "https://registry.npmmirror.com/universal-github-app-jwt/-/universal-github-app-jwt-1.1.1.tgz#d57cee49020662a95ca750a057e758a1a7190e6e" - integrity sha512-G33RTLrIBMFmlDV4u4CBF7dh71eWwykck4XgaxaIVeZKOYZRAAxvcGMRFTUclVY6xoUPQvO4Ne5wKGxYm/Yy9w== - dependencies: - "@types/jsonwebtoken" "^9.0.0" - jsonwebtoken "^9.0.0" - -universal-user-agent@^6.0.0: - version "6.0.0" - resolved "https://registry.npmmirror.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" - integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -update-browserslist-db@^1.0.10: - version "1.0.11" - resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url-join@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/url-join/-/url-join-5.0.0.tgz#c2f1e5cbd95fa91082a93b58a1f42fecb4bdbcf1" - integrity sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA== - -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -v8-compile-cache-lib@^3.0.1: - version "3.0.1" - resolved "https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" - integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== - -v8-to-istanbul@^9.0.0: - version "9.1.0" - resolved "https://registry.npmmirror.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265" - integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA== - dependencies: - "@jridgewell/trace-mapping" "^0.3.12" - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - -validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: - version "3.0.4" - resolved "https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -validate-npm-package-name@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713" - integrity sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ== - dependencies: - builtins "^5.0.0" - -vite-node@0.32.0: - version "0.32.0" - resolved "https://registry.npmmirror.com/vite-node/-/vite-node-0.32.0.tgz#8ee54539fa75d1271adaa9788c8ba526480f4519" - integrity sha512-220P/y8YacYAU+daOAqiGEFXx2A8AwjadDzQqos6wSukjvvTWNqleJSwoUn0ckyNdjHIKoxn93Nh1vWBqEKr3Q== - dependencies: - cac "^6.7.14" - debug "^4.3.4" - mlly "^1.2.0" - pathe "^1.1.0" - picocolors "^1.0.0" - vite "^3.0.0 || ^4.0.0" - -vite-plugin-banner@^0.7.0: - version "0.7.0" - resolved "https://registry.npmmirror.com/vite-plugin-banner/-/vite-plugin-banner-0.7.0.tgz#d765257ae499bd383c8e363097e1754bcd12180e" - integrity sha512-g0cm0wbrR6b6wR8FWtfD1RSDPacdumKEOAnneXv+NpJ9ez+j6rklRv6lMOO+aPf+Y6Zb8OzgIk0FXBZ6h+DeZQ== - -"vite@^3.0.0 || ^4.0.0": - version "4.3.8" - resolved "https://registry.npmmirror.com/vite/-/vite-4.3.8.tgz#70cd6a294ab52d7fb8f37f5bc63d117dd19e9918" - integrity sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ== - dependencies: - esbuild "^0.17.5" - postcss "^8.4.23" - rollup "^3.21.0" - optionalDependencies: - fsevents "~2.3.2" - -vite@^4.3.9: - version "4.3.9" - resolved "https://registry.npmmirror.com/vite/-/vite-4.3.9.tgz#db896200c0b1aa13b37cdc35c9e99ee2fdd5f96d" - integrity sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg== - dependencies: - esbuild "^0.17.5" - postcss "^8.4.23" - rollup "^3.21.0" - optionalDependencies: - fsevents "~2.3.2" - -vitepress@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.npmmirror.com/vitepress/-/vitepress-1.0.0-beta.2.tgz#b277b8d539c5697db274c0f98172809f9516a9bf" - integrity sha512-DBXYjtYbm3W1IPPJ2TiCaK/XK+o/2XmL2+jslOGKm+txcbmG0kbeB+vadC5tCUZA9NdA+9Ywj3M4548c7t/SDg== - dependencies: - "@docsearch/css" "^3.5.0" - "@docsearch/js" "^3.5.0" - "@vitejs/plugin-vue" "^4.2.3" - "@vue/devtools-api" "^6.5.0" - "@vueuse/core" "^10.1.2" - "@vueuse/integrations" "^10.1.2" - body-scroll-lock "4.0.0-beta.0" - focus-trap "^7.4.3" - mark.js "8.11.1" - minisearch "^6.1.0" - shiki "^0.14.2" - vite "^4.3.9" - vue "^3.3.4" - -vitest@^0.32.0: - version "0.32.0" - resolved "https://registry.npmmirror.com/vitest/-/vitest-0.32.0.tgz#125212b8abbfdae047fa72e516bc7257fd0a67db" - integrity sha512-SW83o629gCqnV3BqBnTxhB10DAwzwEx3z+rqYZESehUB+eWsJxwcBQx7CKy0otuGMJTYh7qCVuUX23HkftGl/Q== - dependencies: - "@types/chai" "^4.3.5" - "@types/chai-subset" "^1.3.3" - "@types/node" "*" - "@vitest/expect" "0.32.0" - "@vitest/runner" "0.32.0" - "@vitest/snapshot" "0.32.0" - "@vitest/spy" "0.32.0" - "@vitest/utils" "0.32.0" - acorn "^8.8.2" - acorn-walk "^8.2.0" - cac "^6.7.14" - chai "^4.3.7" - concordance "^5.0.4" - debug "^4.3.4" - local-pkg "^0.4.3" - magic-string "^0.30.0" - pathe "^1.1.0" - picocolors "^1.0.0" - std-env "^3.3.2" - strip-literal "^1.0.1" - tinybench "^2.5.0" - tinypool "^0.5.0" - vite "^3.0.0 || ^4.0.0" - vite-node "0.32.0" - why-is-node-running "^2.2.2" - -void-elements@^2.0.1: - version "2.0.1" - resolved "https://registry.npmmirror.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec" - integrity sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung== - -vscode-oniguruma@^1.7.0: - version "1.7.0" - resolved "https://registry.npmmirror.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b" - integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA== - -vscode-textmate@^8.0.0: - version "8.0.0" - resolved "https://registry.npmmirror.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d" - integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg== - -vue-demi@>=0.14.0: - version "0.14.5" - resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.5.tgz#676d0463d1a1266d5ab5cba932e043d8f5f2fbd9" - integrity sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA== - -vue-docgen-api@^3.26.0: - version "3.26.0" - resolved "https://registry.npmmirror.com/vue-docgen-api/-/vue-docgen-api-3.26.0.tgz#2afc6a39e72862fbbc60ceb8510c681749f05460" - integrity sha512-ujdg4i5ZI/wE46RZQMFzKnDGyhEuPCu+fMA86CAd9EIek/6+OqraSVBm5ZkLrbEd5f8xxdnqMU4yiSGHHeao/Q== - dependencies: - "@babel/parser" "^7.2.3" - "@babel/types" "^7.0.0" - ast-types "^0.12.2" - hash-sum "^1.0.2" - lru-cache "^4.1.5" - pug "^2.0.3" - recast "^0.17.3" - ts-map "^1.0.3" - typescript "^3.2.2" - vue-template-compiler "^2.0.0" - -vue-template-compiler@^2.0.0: - version "2.7.14" - resolved "https://registry.npmmirror.com/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz#4545b7dfb88090744c1577ae5ac3f964e61634b1" - integrity sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ== - dependencies: - de-indent "^1.0.2" - he "^1.2.0" - -vue2-ace-editor@^0.0.15: - version "0.0.15" - resolved "https://registry.npmmirror.com/vue2-ace-editor/-/vue2-ace-editor-0.0.15.tgz#569b208e54ae771ae1edd3b8902ac42f0edc74e3" - integrity sha512-e3TR9OGXc71cGpvYcW068lNpRcFt3+OONCC81oxHL/0vwl/V3OgqnNMw2/RRolgQkO/CA5AjqVHWmANWKOtNnQ== - dependencies: - brace "^0.11.0" - -vue@^3.3.4: - version "3.3.4" - resolved "https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz#8ed945d3873667df1d0fcf3b2463ada028f88bd6" - integrity sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw== - dependencies: - "@vue/compiler-dom" "3.3.4" - "@vue/compiler-sfc" "3.3.4" - "@vue/runtime-dom" "3.3.4" - "@vue/server-renderer" "3.3.4" - "@vue/shared" "3.3.4" - -walk-up-path@^3.0.1: - version "3.0.1" - resolved "https://registry.npmmirror.com/walk-up-path/-/walk-up-path-3.0.1.tgz#c8d78d5375b4966c717eb17ada73dbd41490e886" - integrity sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA== - -wcwidth@^1.0.0, wcwidth@^1.0.1: - version "1.0.1" - resolved "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" - integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== - dependencies: - defaults "^1.0.3" - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -well-known-symbols@^2.0.0: - version "2.0.0" - resolved "https://registry.npmmirror.com/well-known-symbols/-/well-known-symbols-2.0.0.tgz#e9c7c07dbd132b7b84212c8174391ec1f9871ba5" - integrity sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - is-typed-array "^1.1.10" - -which@^1.2.14: - version "1.3.1" - resolved "https://registry.npmmirror.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1, which@^2.0.2: - version "2.0.2" - resolved "https://registry.npmmirror.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -which@^3.0.0, which@^3.0.1: - version "3.0.1" - resolved "https://registry.npmmirror.com/which/-/which-3.0.1.tgz#89f1cd0c23f629a8105ffe69b8172791c87b4be1" - integrity sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg== - dependencies: - isexe "^2.0.0" - -why-is-node-running@^2.2.2: - version "2.2.2" - resolved "https://registry.npmmirror.com/why-is-node-running/-/why-is-node-running-2.2.2.tgz#4185b2b4699117819e7154594271e7e344c9973e" - integrity sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA== - dependencies: - siginfo "^2.0.0" - stackback "0.0.2" - -wide-align@^1.1.5: - version "1.1.5" - resolved "https://registry.npmmirror.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - -window-size@0.1.0: - version "0.1.0" - resolved "https://registry.npmmirror.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" - integrity sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg== - -with@^5.0.0: - version "5.1.1" - resolved "https://registry.npmmirror.com/with/-/with-5.1.1.tgz#fa4daa92daf32c4ea94ed453c81f04686b575dfe" - integrity sha512-uAnSsFGfSpF6DNhBXStvlZILfHJfJu4eUkfbRGk94kGO1Ta7bg6FwfvoOhhyHAJuFbCw+0xk4uJ3u57jLvlCJg== - dependencies: - acorn "^3.1.0" - acorn-globals "^3.0.0" - -word-wrap@^1.0.3, word-wrap@^1.2.3: - version "1.2.3" - resolved "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wordwrap@0.0.2: - version "0.0.2" - resolved "https://registry.npmmirror.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" - integrity sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q== - -wordwrap@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== - -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^8.1.0: - version "8.1.0" - resolved "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" - integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== - dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" - -wrappy@1: - version "1.0.2" - resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@^5.0.0, write-file-atomic@^5.0.1: - version "5.0.1" - resolved "https://registry.npmmirror.com/write-file-atomic/-/write-file-atomic-5.0.1.tgz#68df4717c55c6fa4281a7860b4c2ba0a6d2b11e7" - integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^4.0.1" - -xmlcreate@^2.0.4: - version "2.0.4" - resolved "https://registry.npmmirror.com/xmlcreate/-/xmlcreate-2.0.4.tgz#0c5ab0f99cdd02a81065fa9cd8f8ae87624889be" - integrity sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg== - -xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.npmmirror.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.npmmirror.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" - integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== - -yallist@^3.0.2: - version "3.1.1" - resolved "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" - integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml@^2.2.2: - version "2.2.2" - resolved "https://registry.npmmirror.com/yaml/-/yaml-2.2.2.tgz#ec551ef37326e6d42872dad1970300f8eb83a073" - integrity sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA== - -yaml@^2.3.1: - version "2.3.1" - resolved "https://registry.npmmirror.com/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" - integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== - -yargs-parser@^20.2.2, yargs-parser@^20.2.3, yargs-parser@^20.2.9: - version "20.2.9" - resolved "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs@^16.2.0: - version "16.2.0" - resolved "https://registry.npmmirror.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" - integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.0" - y18n "^5.0.5" - yargs-parser "^20.2.2" - -yargs@^17.0.0, yargs@^17.5.1: - version "17.7.2" - resolved "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" - -yargs@~3.10.0: - version "3.10.0" - resolved "https://registry.npmmirror.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" - integrity sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A== - dependencies: - camelcase "^1.0.2" - cliui "^2.1.0" - decamelize "^1.0.0" - window-size "0.1.0" - -yn@3.1.1: - version "3.1.1" - resolved "https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - -yocto-queue@^1.0.0: - version "1.0.0" - resolved "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" - integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==