UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

7 lines (6 loc) 168 B
export const toTitleCase = (str: string) => { return str.replace( /\w\S*/g, (text) => text.charAt(0).toUpperCase() + text.substring(1).toLowerCase(), ); };