blob: 9f8624625e718ccd853492c2eef28e1839e7ddfb [file] [log] [blame]
module.exports = getLastPage
const getPage = require('./get-page')
function getLastPage (octokit, link, headers) {
return getPage(octokit, link, 'last', headers)
}