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