UNPKG

@liveblocks/react-ui

Version:

A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.

10 lines (8 loc) 274 B
function isText(element) { return !("type" in element) && "text" in element && typeof element.text === "string"; } function isPlainText(node) { return isText(node) && Object.keys(node).length === 1; } export { isPlainText, isText }; //# sourceMappingURL=is-text.js.map