mirror of
https://gitea.com/actions/setup-node.git
synced 2025-01-11 08:29:16 +08:00
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
module.exports = getLastPage
|
|
|
|
const getPage = require('./get-page')
|
|
|
|
function getLastPage (octokit, link, headers) {
|
|
return getPage(octokit, link, 'last', headers)
|
|
}
|