UNPKG

react-email

Version:

A live preview of your emails right in your browser.

4 lines (3 loc) 134 B
export const fromDashCaseToCamelCase = (text: string) => { return text.replace(/-(\w|$)/g, (_, p1: string) => p1.toUpperCase()); };