has-first-page.js 148 B

12345678
  1. module.exports = hasFirstPage
  2. const getPageLinks = require('./get-page-links')
  3. function hasFirstPage (link) {
  4. return getPageLinks(link).first
  5. }