mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 05:49:31 +08:00
3 lines
99 B
Text
3 lines
99 B
Text
export default function lowerFirst(string) {
|
|
return string[0].toLowerCase() + string.slice(1);
|
|
}
|