export function normalizeComment()

in nodes/YouTrack/resources/command/utils.ts [42:48]


export function normalizeComment(comment: string | undefined): string | undefined {
	if (!comment) {
		return undefined;
	}
	const trimmed = comment.trim();
	return trimmed || undefined;
}