UNPKG

bobrilstrap

Version:
8 lines (6 loc) 214 B
export function clearAndUpper(text: string): string { return text.replace(/-/, "").toUpperCase(); } export function toPascalCase(text: string): string { return text.replace(/(^\w|-\w)/g, clearAndUpper); }