UNPKG

@portabletext/editor

Version:

Portable Text Editor made in React

9 lines (7 loc) 210 B
import type {PortableTextTextBlock} from '@sanity/types' /** * @public */ export function getTextBlockText(block: PortableTextTextBlock) { return block.children.map((child) => child.text ?? '').join('') }