mirror of
https://github.com/actions/setup-node.git
synced 2024-11-14 07:31:08 +07: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)
|
||
|
}
|