mirror of https://github.com/actions/setup-node
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
|
module.exports = getLastPage
|
||
|
|
||
|
const getPage = require('./get-page')
|
||
|
|
||
|
function getLastPage (octokit, link, headers) {
|
||
|
return getPage(octokit, link, 'last', headers)
|
||
|
}
|