Files
nirvana-v3/packages/desktop/src/util/text.ts
T

8 lines
173 B
TypeScript

export const toTitleCase = (str: string) => {
return str
.toLowerCase()
.split(' ')
.map((s) => s.charAt(0).toUpperCase() + s.substring(1))
.join(' ');
};