mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-14 13:58:07 +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)
|
|
}
|