├── .gitattributes ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── plugin.js ├── test ├── https │ ├── fastify.cert │ └── fastify.key └── tests.test.js └── types ├── fastify-url-data.d.ts └── fastify-url-data.test-d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/plugin.js -------------------------------------------------------------------------------- /test/https/fastify.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/test/https/fastify.cert -------------------------------------------------------------------------------- /test/https/fastify.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/test/https/fastify.key -------------------------------------------------------------------------------- /test/tests.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/test/tests.test.js -------------------------------------------------------------------------------- /types/fastify-url-data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/types/fastify-url-data.d.ts -------------------------------------------------------------------------------- /types/fastify-url-data.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-url-data/HEAD/types/fastify-url-data.test-d.ts --------------------------------------------------------------------------------