mirror of
https://github.com/actions/setup-node
synced 2024-11-14 01:22:40 +00:00
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)
|
||
|
}
|