get-next-page.js 168 B

1234567
  1. module.exports = getNextPage
  2. const getPage = require('./get-page')
  3. function getNextPage (octokit, link, headers) {
  4. return getPage(octokit, link, 'next', headers)
  5. }