blob: fbd5e94e3197592dc22dd8aa092ab97e1099ebc5 [file] [log] [blame]
module.exports = getNextPage
const getPage = require('./get-page')
function getNextPage (octokit, link, headers) {
return getPage(octokit, link, 'next', headers)
}