mirror of
https://github.com/actions/setup-node.git
synced 2025-05-11 21:49:48 +08: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)
|
|
}
|