├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── basic.ts └── pipe.ts ├── package.json ├── src ├── error.ts ├── fetch.ts ├── index.ts └── parser.ts └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /lib 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/examples/basic.ts -------------------------------------------------------------------------------- /examples/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/examples/pipe.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/package.json -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/src/error.ts -------------------------------------------------------------------------------- /src/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/src/fetch.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/src/parser.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstasat/fp-fetch/HEAD/tsconfig.json --------------------------------------------------------------------------------