setup-node/node_modules/octokit-pagination-methods/lib/has-previous-page.js
2019-08-05 15:18:52 -04:00

10 lines
343 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = hasPreviousPage
const deprecate = require('./deprecate')
const getPageLinks = require('./get-page-links')
function hasPreviousPage (link) {
deprecate(`octokit.hasPreviousPage() You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`)
return getPageLinks(link).prev
}