- *
<-- first (and deepest) node is
- * |adaddad <-- focus node
- *
- */
- const leftSiblings = Caret.getHigherLevelSiblings(focusNode, 'left');
-
- const nothingAtLeft = leftSiblings.every((node) => {
- return dom.isEmpty(node);
- });
-
- return nothingAtLeft;
- }
-
- /**
- * Get all first-level (first child of [contenteditabel]) siblings from passed node
- * Then you can check it for emptiness
- *
- * @example
- *