Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/debug/
Upload File :
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(', ')}]`;
}