mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-18 09:05:59 +02:00
3 lines
104 B
TypeScript
3 lines
104 B
TypeScript
export function firstToUpper(value: string) {
|
|
return value.charAt(0).toUpperCase() + value.slice(1);
|
|
} |