Files
vscode-front-matter/src/helpers/StringHelpers.ts
2019-08-26 11:04:21 +02:00

3 lines
104 B
TypeScript

export function firstToUpper(value: string) {
return value.charAt(0).toUpperCase() + value.slice(1);
}