UNPKG

@breadcrum/extract-meta

Version:
10 lines (9 loc) 340 B
/** * @param {HTMLElement | Element | null} [node] - The DOM node to extract content from. * @returns {string} The content or value attribute of the node. */ export const innerText = node => // @ts-expect-error TS Isn't happy with the optional lookup node?.innerText ?? node?.textContent ?? '' // JSDOM doesn't support innerText