setup-node/node_modules/octokit-pagination-methods/lib/has-last-page.js
Danny McCormick 5273d0df9c Add auth
2019-08-06 18:29:44 -04:00

10 lines
331 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 = 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
}