action-gh-release/node_modules/octokit-pagination-methods/lib/get-last-page.js
2019-09-17 13:10:47 +09: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)
}