wishthis/node_modules/octokit-pagination-methods/lib/get-first-page.js
2022-01-21 09:28:41 +01:00

7 lines
171 B
JavaScript

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