├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── release-please.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── LICENSE ├── README.md ├── commitlint.config.js ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── src ├── endpoints.ts ├── index.ts └── location.ts ├── test ├── endpoints.test.ts ├── index.test.ts └── location.test.ts ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | # .husky/pre-commit 2 | pnpm exec lint-staged -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | export default { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/src/endpoints.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/src/location.ts -------------------------------------------------------------------------------- /test/endpoints.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/test/endpoints.test.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/location.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/test/location.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwv/get-cloudflare-location/HEAD/vitest.config.ts --------------------------------------------------------------------------------