export function createTooltip({ title, body, images }) { let html = `

${title}

`; if (body) { body = Array.isArray(body) ? body : [body]; html += body.map((text) => `

${text}

`).join(''); } if (images) { let imgHtml = ''; images.forEach((e) => { imgHtml += ``; }); html += ``; } return html; }