mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-12-15 06:27:06 +00:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
module.exports = getPreviousPage
|
|
|
|
const getPage = require('./get-page')
|
|
|
|
function getPreviousPage (octokit, link, headers) {
|
|
return getPage(octokit, link, 'prev', headers)
|
|
}
|