8 lines
329 B
TypeScript
8 lines
329 B
TypeScript
/**
|
|
* Convert Camel Joined Text to Camel Spaced Text
|
|
* ==============================================================================
|
|
* @description this function takes a camel cased text without spaces, and returns
|
|
* a camel-case-spaced text
|
|
*/
|
|
export default function camelJoinedtoCamelSpace(text: string): string | null;
|