mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 03:55:47 +00: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)
|
||
|
}
|