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

10 lines
331 B
JavaScript
Raw Normal View History

2019-09-09 10:27:23 -07:00
module.exports = hasLastPage
const deprecate = require('./deprecate')
const getPageLinks = require('./get-page-links')
function hasLastPage (link) {
deprecate(`octokit.hasLastPage() You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`)
return getPageLinks(link).last
}