mirror of
https://github.com/zhigang1992/actions.git
synced 2026-06-14 01:21:43 +08:00
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
module.exports = getNextPage
|
|
|
|
const getPage = require('./get-page')
|
|
|
|
function getNextPage (octokit, link, headers) {
|
|
return getPage(octokit, link, 'next', headers)
|
|
}
|