Files
hello-world-javascript-action/node_modules/octokit-pagination-methods/lib/get-last-page.js
Rachael Sewell d166896dc8 Add node_modules
2019-08-06 21:05:52 -07:00

8 lines
168 B
JavaScript

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