mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
4 lines
114 B
TypeScript
4 lines
114 B
TypeScript
|
|
export const sentenceCase = (string: string) => {
|
||
|
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
||
|
|
};
|