Made With ❤️ By Ben
Mar 6, 2025 • 1 min read
demo
paragraph bold italics link
export function upperCaseFirstLetter(str: string): string {
if (!str) return '';
return str.charAt(0).toUpperCase() + str.slice(1);
}
export function upperCaseFirstLetters(str: string): string {
if (!str) return '';
return str.split(' ').map(word => upperCaseFirstLetter(word)).join(' ');
}
export function convertCamelCaseToPropertCase(str: string) {
return str.replace(/([A-Z])/g, ' $1').replace(/^./, function(str){ return str.toUpperCase(); });
}
export function convertProperCaseToCamelCase(str: string) {
return str.replace(/\s(.)/g, function($1) { return $1.toUpperCase(); }).replace(/\s/g, '').replace(/^./, function(str){ return str.toLowerCase(); });
}
export function convertDashToProperCase(str: string): string {
if (!str) return '';
return str.split('-').map(word => upperCaseFirstLetter(word)).join(' ');
}
^ | | some extra spacing
yt embeds