2
0
mirror of https://gitea.com/actions/setup-node.git synced 2025-02-21 16:30:24 +08:00

8 lines
168 B
JavaScript
Raw Normal View History

2019-08-05 15:18:52 -04:00
module.exports = getLastPage
const getPage = require('./get-page')
function getLastPage (octokit, link, headers) {
return getPage(octokit, link, 'last', headers)
}