// ═══════════════════════════════════════════════════════ // Lorem Ipsum // ═══════════════════════════════════════════════════════ async function generateLorem() { const d = await apiPost('/api/lorem', { paragraphs: parseInt(document.getElementById('loremCount').value) }); if (d.success) document.getElementById('loremOutput').value = d.result; }