action-gh-release/node_modules/octokit-pagination-methods/lib/get-first-page.js
2021-07-21 15:17:14 +08: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)
}