action-gh-release/node_modules/octokit-pagination-methods/lib/get-last-page.js
2021-07-21 15:17:14 +08: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)
}