wishthis/node_modules/octokit-pagination-methods/lib/get-next-page.js
2022-01-21 09:28:41 +01:00

7 lines
168 B
JavaScript

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