4 lines
130 B
TypeScript
4 lines
130 B
TypeScript
|
export const fromSnakeCase = (text: any) => {
|
||
|
return text.replace(/-/g, ' ').replace(/\b\w/g, (word) => word.toUpperCase());
|
||
|
};
|