gitextract_udyormir/ ├── .babelrc.js ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── codeql.yml │ ├── lint.yml │ ├── site.yml │ └── size-limit.yml ├── .gitignore ├── .size-limit.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demos/ │ ├── basic.html │ ├── hrefFn/ │ │ ├── 2.html │ │ ├── 2.json │ │ └── hrefFn_demo.html │ ├── network-idle.html │ ├── network-idle.js │ ├── news/ │ │ └── README.md │ ├── news-workbox/ │ │ └── README.md │ ├── spa/ │ │ └── README.md │ └── sw.js ├── package.json ├── site/ │ ├── .browserslistrc │ ├── .config/ │ │ ├── configstore/ │ │ │ └── update-notifier-pnpm.json │ │ └── glitch-package-manager │ ├── .eleventy.js │ ├── .firebaserc │ ├── .gitignore │ ├── .stylelintignore │ ├── .stylelintrc.json │ ├── LICENSE │ ├── README.md │ ├── firebase.json │ ├── index.njk │ ├── package.json │ ├── src/ │ │ ├── _data/ │ │ │ └── site.js │ │ ├── _includes/ │ │ │ ├── components/ │ │ │ │ ├── chrome-extension.njk │ │ │ │ ├── copy-snippet.njk │ │ │ │ ├── download.njk │ │ │ │ ├── github-fork.njk │ │ │ │ ├── github-star.njk │ │ │ │ ├── heading.njk │ │ │ │ ├── installation.njk │ │ │ │ ├── over-prefetching.njk │ │ │ │ ├── react.njk │ │ │ │ ├── trusted-by.njk │ │ │ │ ├── usage.njk │ │ │ │ ├── use-with.njk │ │ │ │ ├── why-prefetch.njk │ │ │ │ └── why-quicklink.njk │ │ │ └── layouts/ │ │ │ ├── base.njk │ │ │ ├── favicons.njk │ │ │ ├── footer.njk │ │ │ ├── head.njk │ │ │ ├── header.njk │ │ │ ├── highlighted-section-wrapper.njk │ │ │ ├── normal-section-wrapper.njk │ │ │ └── social.njk │ │ ├── api.njk │ │ ├── approach.njk │ │ ├── assets/ │ │ │ ├── js/ │ │ │ │ └── script.js │ │ │ └── styles/ │ │ │ ├── _copy-snippet.scss │ │ │ ├── github-markdown.scss │ │ │ ├── main.scss │ │ │ └── vendor/ │ │ │ ├── _github-markdown.scss │ │ │ └── _prism.scss │ │ ├── demo.njk │ │ ├── index.njk │ │ ├── measure.njk │ │ ├── robots.njk │ │ ├── site.webmanifest │ │ └── sitemap.njk │ └── watch.json ├── src/ │ ├── chunks.mjs │ ├── index.mjs │ ├── prefetch.mjs │ ├── prerender.mjs │ ├── react-chunks.js │ └── request-idle-callback.mjs ├── test/ │ ├── fixtures/ │ │ ├── 1.html │ │ ├── 2.html │ │ ├── 3.html │ │ ├── 4.html │ │ ├── index.html │ │ ├── main.css │ │ ├── rmanifest.json │ │ ├── test-allow-origin-all.html │ │ ├── test-allow-origin.html │ │ ├── test-basic-usage.html │ │ ├── test-custom-dom-source.html │ │ ├── test-custom-href-function.html │ │ ├── test-delay.html │ │ ├── test-es-modules.html │ │ ├── test-ignore-basic.html │ │ ├── test-ignore-multiple.html │ │ ├── test-limit.html │ │ ├── test-node-list.html │ │ ├── test-prefetch-chunks.html │ │ ├── test-prefetch-duplicate-shared.html │ │ ├── test-prefetch-duplicate.html │ │ ├── test-prefetch-multiple.html │ │ ├── test-prefetch-single.html │ │ ├── test-prerender-andPrefetch.html │ │ ├── test-prerender-only.html │ │ ├── test-prerender-wrapper-multiple.html │ │ ├── test-prerender-wrapper-single.html │ │ ├── test-same-origin.html │ │ ├── test-threshold.html │ │ └── test-throttle.html │ └── quicklink.spec.js └── translations/ └── zh-cn/ └── README.md