@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.
13 lines (10 loc) • 318 B
JavaScript
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;
}
exports.isPlainText = isPlainText;
exports.isText = isText;
//# sourceMappingURL=is-text.cjs.map
;