├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── pull_request-main.yml │ └── push-main.yml ├── .gitignore ├── .kodiak.toml ├── .npmignore ├── LICENSE ├── README.md ├── _config.yml ├── babel.config.js ├── global.d.ts ├── index.md ├── jest.config.js ├── package.json ├── src ├── index.ts └── test │ ├── index.test.ts │ └── nocks.ts ├── tsconfig.json ├── webpack.config.babel.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: AndersDJohnson 2 | -------------------------------------------------------------------------------- /.github/workflows/pull_request-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/.github/workflows/pull_request-main.yml -------------------------------------------------------------------------------- /.github/workflows/push-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/.github/workflows/push-main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/.gitignore -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/_config.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/babel.config.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'parse-link-header'; 2 | 3 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/index.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/src/test/index.test.ts -------------------------------------------------------------------------------- /src/test/nocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/src/test/nocks.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/webpack.config.babel.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndersDJohnson/fetch-paginate/HEAD/yarn.lock --------------------------------------------------------------------------------