2.0.2 • Published 3 years ago

header-pagination v2.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

header-pagination

Actions Status

Parse rfc5988 style pagination Link headers from a fetch Response object.

npm install header-pagination

Usage

import { getPagination } from 'header-pagination'

window.fetch(req).then(async response => {
  const pagination = getPagination(response.headers)
  // {
  //    last,
  //    next,
  //    prev,
  //    first,
  //    current,
  //    total (if X-Total-Count is included)
  // }
  const json = await response.json()
  return {pagination, json}
})

API

getPagination(response)

Given a fetch Response, returns an object with the following properties:

{
  last,
  next,
  prev,
  first,
  current,
  total // if X-Total-Count is included
}

See also

License

MIT

2.0.2

3 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.0

4 years ago