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.

16 lines (13 loc) 328 B
import { ReactEditor } from 'slate-react'; function getDOMRange(editor, range) { try { return ReactEditor.toDOMRange(editor, range); } catch (error) { return getDOMRange(editor, { anchor: range.anchor, focus: range.anchor }); } } export { getDOMRange }; //# sourceMappingURL=get-dom-range.js.map