UNPKG

@graphteon/juricode

Version:

We are forging the future with lines of digital steel

6 lines 262 B
export const extractNextPageFromLink = (link) => { const regex = /<[^>]*[?&]page=(\d+)(?:&[^>]*)?>; rel="next"/; const match = link.match(regex); return match ? parseInt(match[1], 10) : null; }; //# sourceMappingURL=extract-next-page-from-link.js.map