mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
8430b1ec95
* Add updated i18n config and en locale
4 lines
114 B
TypeScript
4 lines
114 B
TypeScript
export const sentenceCase = (string: string) => {
|
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
};
|