UNPKG

@technobuddha/library

Version:
9 lines (8 loc) 264 B
/** * Convert a string to a title, capitalizing each word, except for the small words * * @param input the string to make title case * @return the string in title case */ export declare function toTitleCase(input: string): string; export default toTitleCase;