mirror of
https://gh-proxy.org/https://github.com/softprops/action-gh-release.git
synced 2026-07-19 01:23:01 +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)
|
|
}
|