feat: Remote Joiner (#4098)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
export function toPascalCase(s: string): string {
|
||||
return s.replace(/(^\w|_\w)/g, (match) =>
|
||||
match.replace(/_/g, "").toUpperCase()
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user