6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
export function toPascalCase(s: string): string {
|
|
return s.replace(/(^\w|_\w)/g, (match) =>
|
|
match.replace(/_/g, "").toUpperCase()
|
|
)
|
|
}
|