4
common/resources/client/utils/string/lower-first.ts
Executable file
4
common/resources/client/utils/string/lower-first.ts
Executable file
@@ -0,0 +1,4 @@
|
||||
export function lowerFirst(string: string): string {
|
||||
if (!string) return '';
|
||||
return string.charAt(0).toLowerCase() + string.slice(1);
|
||||
}
|
||||
Reference in New Issue
Block a user