setup-maven/node_modules/octokit-pagination-methods/lib/get-first-page.js

8 lines
171 B
JavaScript
Raw Permalink Normal View History

2019-12-07 13:09:20 +00:00
module.exports = getFirstPage
const getPage = require('./get-page')
function getFirstPage (octokit, link, headers) {
return getPage(octokit, link, 'first', headers)
}