html-metadata-resolver
A service for resolving meta tags attributes
const html = ` <!doctype html> <html> <head> <meta key="val"> <meta val> <meta content='https://assets.somehost.com/resource.jpg' property='og:image'> </head> </html> ` console
The result is:
key: 'val' val: '' content: 'https://assets.somehost.com/resource.jpg' property: 'og:image'