wishthis/node_modules/octokit-pagination-methods/lib/get-last-page.js
2022-01-21 09:28:41 +01:00

7 lines
168 B
JavaScript

module.exports = getLastPage
const getPage = require('./get-page')
function getLastPage (octokit, link, headers) {
return getPage(octokit, link, 'last', headers)
}