This commit is contained in:
Danny McCormick 2019-08-06 18:29:44 -04:00
parent fc9ff49b90
commit 5273d0df9c
391 changed files with 79850 additions and 45 deletions

View file

@ -0,0 +1,7 @@
module.exports = getPreviousPage
const getPage = require('./get-page')
function getPreviousPage (octokit, link, headers) {
return getPage(octokit, link, 'prev', headers)
}