async function getNumPages()

in src/wordpress.js [14:17]


async function getNumPages(endPoint) {
  const result = await fetch(endPoint, { method: 'HEAD' });
  return result.headers.get('x-wp-totalpages') || 1;
}