@@ -0,0 +1,4 @@
export function lowerFirst(string: string): string {
if (!string) return '';
return string.charAt(0).toLowerCase() + string.slice(1);
}
The note is not visible to the blocked user.