mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-07 22:04:36 +02:00
4 lines
105 B
TypeScript
4 lines
105 B
TypeScript
export function firstToUpper(value: string) {
|
|
return value.charAt(0).toUpperCase() + value.slice(1);
|
|
}
|