Files
action-gh-release/node_modules/octokit-pagination-methods/lib/get-first-page.js
T

8 lines
171 B
JavaScript
Raw Normal View History

2019-09-29 08:30:02 -04:00
module.exports = getFirstPage
const getPage = require('./get-page')
function getFirstPage (octokit, link, headers) {
return getPage(octokit, link, 'first', headers)
}