mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-03 03:52:31 +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);
|
|
} |