github-pages-deploy-action/node_modules/octokit-pagination-methods/lib/get-next-page.js
James Ives a5a215d318 Revert
2020-06-06 12:27:02 -04: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)
}