Add: utils func to get first real char of a string

This commit is contained in:
Aroy-Art 2025-03-16 22:20:25 +01:00
parent 7165605f5e
commit 8858061848
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -43,3 +43,22 @@ export function relativeTime(dtString: string): string {
return `${seconds} second${seconds > 1 ? 's' : ''} ago`;
}
}
export function getFirstGrapheme(text: string): string {
// Get the first grapheme (visible character) from a string
if (!text || text.length === 0) return '';
// Use Intl.Segmenter for proper grapheme segmentation (modern browsers)
if (typeof Intl !== 'undefined' && Intl.Segmenter) {
const segmenter = new Intl.Segmenter(undefined, { granularity: 'grapheme' });
const segments = segmenter.segment(text);
const iterator = segments[Symbol.iterator]();
const firstSegment = iterator.next();
return firstSegment.done ? '' : firstSegment.value.segment;
}
// Fallback for environments without Intl.Segmenter
// This handles many but not all cases correctly
return Array.from(text)[0] || '';
};