Files
stale/node_modules/octokit-pagination-methods/lib/get-next-page.js
Chris Patterson 62b122fb5f Initial import
2019-08-03 21:34:59 -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)
}