1
0
mirror of https://github.com/actions/setup-dotnet.git synced 2025-03-02 18:49:04 +07:00

10 lines
331 B
JavaScript
Raw Normal View History

2019-09-09 10:27:23 -07:00
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
}