vylbot-app/src/helpers/StringTools.ts
2021-12-02 14:09:05 +00:00

15 lines
No EOL
404 B
TypeScript

export default class StringTools {
public static Capitalise(str: string): string {
const words = str.split(" ");
let result: string[] = [];
words.forEach(word => {
const firstLetter = word.substring(0, 1).toUpperCase();
const rest = word.substring(1);
result.push(firstLetter + rest);
});
return result.join(" ");
}
}