github-pages-deploy-action/node_modules/octokit-pagination-methods/lib/get-next-page.js
2020-01-28 00:08:03 -05:00

8 lines
168 B
JavaScript

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