fixing imports

This commit is contained in:
2026-02-04 21:32:30 -05:00
parent 74b0a0dbab
commit db79856b08
166 changed files with 1986 additions and 982 deletions

View File

@@ -1,4 +1,6 @@
// Utility function to capitalize the first letter of each word in a string
export function capitalizeWords(input: string): string {
return input.replace(/\b\w/g, (char) => char.toUpperCase()).replace(/_\w/g, (char) => char.toUpperCase());
}
return input
.replace(/\b\w/g, (char) => char.toUpperCase())
.replace(/_\w/g, (char) => char.toUpperCase());
}