├── .gitignore ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── not-typesafe.ts ├── streamlining-with-zod.ts └── using-unknown.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexxeln/safe-fetch-calls/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexxeln/safe-fetch-calls/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexxeln/safe-fetch-calls/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/not-typesafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexxeln/safe-fetch-calls/HEAD/src/not-typesafe.ts -------------------------------------------------------------------------------- /src/streamlining-with-zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexxeln/safe-fetch-calls/HEAD/src/streamlining-with-zod.ts -------------------------------------------------------------------------------- /src/using-unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexxeln/safe-fetch-calls/HEAD/src/using-unknown.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexxeln/safe-fetch-calls/HEAD/tsconfig.json --------------------------------------------------------------------------------