1
0
Files
setup-dotnet/node_modules/octokit-pagination-methods/lib/has-next-page.js
T
2019-10-03 16:35:25 -07:00

10 lines
331 B
JavaScript

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