UNPKG

design-comuni-plone-theme

Version:
11 lines (10 loc) 302 B
import { serializeNodesToText } from '@plone/volto-slate/editor/render'; /* Used to verify if slate text blocks are empty */ export const checkRichTextHasContent = (text) => { if (text?.[0]?.children) { return serializeNodesToText(text?.[0]?.children || [])?.length > 0; } return false; };