mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-24 10:21:03 -05:00
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
module.exports = getFirstPage
|
|
|
|
const getPage = require('./get-page')
|
|
|
|
function getFirstPage (octokit, link, headers) {
|
|
return getPage(octokit, link, 'first', headers)
|
|
}
|