mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
3 lines
104 B
TypeScript
3 lines
104 B
TypeScript
export function firstToUpper(value: string) {
|
|
return value.charAt(0).toUpperCase() + value.slice(1);
|
|
} |