datasquirel/package-shared/utils/camelJoinedtoCamelSpace.d.ts
Benjamin Toby c49513c189 Updates
2024-12-06 11:44:26 +01:00

13 lines
443 B
TypeScript

export = camelJoinedtoCamelSpace;
/**
* 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
*
* @param {string} text - text string without spaces
*
* @returns {string | null}
*/
declare function camelJoinedtoCamelSpace(text: string): string | null;