UNPKG

utilaide

Version:

Modern utility helper library for cleaner, faster TypeScript/JavaScript development 🚀🔧

6 lines (4 loc) • 209 B
export const camelToSnake = (str: string): string => str.replace(/([a-z])([A-Z])/g, '$1_$2').toLowerCase(); export const toTitleCase = (str: string): string => str.charAt(0).toUpperCase() + str.slice(1);