UNPKG

cli-html

Version:
17 lines (12 loc) 306 B
export const getMetaTags = (document) => { const metaTags = []; if (document.nodeName === 'meta') { metaTags.push(document); } if (document.childNodes) { for (const childNode of document.childNodes) { metaTags.push(...getMetaTags(childNode)); } } return metaTags; };