Files
action-gh-release/node_modules/octokit-pagination-methods/lib/has-first-page.js
softprops 78c309ef59
Some checks failed
Main / build (push) Failing after 0s
node_modules
2019-10-20 19:16:50 -04:00

10 lines
335 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 = hasFirstPage
const deprecate = require('./deprecate')
const getPageLinks = require('./get-page-links')
function hasFirstPage (link) {
deprecate(`octokit.hasFirstPage() You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`)
return getPageLinks(link).first
}