| Current Path : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/debug/ |
| Current File : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/debug/print-node-selection.js |
import { $isNodeSelection } from 'ui.lexical.core';
import type { BaseSelection } from 'ui.lexical.core';
export function printNodeSelection(selection: BaseSelection): string
{
if (!$isNodeSelection(selection))
{
return '';
}
return `: node\n └ [${[...selection._nodes].join(', ')}]`;
}