diff --git a/src/utils/string.ts b/src/utils/string.ts index e56caeae..fe9f629c 100644 --- a/src/utils/string.ts +++ b/src/utils/string.ts @@ -1,4 +1,4 @@ -function convertCamelCaseToReadable(camelCaseString: string): string { +export function convertCamelCaseToReadable(camelCaseString: string): string { // Split the string using regex to match the capital letters const wordsArray = camelCaseString.split(/(?=[A-Z])/);