setup-rust-action/node_modules/octokit-pagination-methods/lib/get-next-page.js
Héctor Ramón Jiménez 7f8c3a27a4 Track node_modules
2019-08-15 19:37:37 +02:00

8 lines
168 B
JavaScript

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