Parses an RFC 5988 Link header into a { rel: url } map.
Link
{ rel: url }
parseLinkHeader('<https://api/x?page=2>; rel="next", <https://api/x?page=9>; rel="last"');// { next: 'https://api/x?page=2', last: 'https://api/x?page=9' } Copy
parseLinkHeader('<https://api/x?page=2>; rel="next", <https://api/x?page=9>; rel="last"');// { next: 'https://api/x?page=2', last: 'https://api/x?page=9' }
Parses an RFC 5988
Linkheader into a{ rel: url }map.