UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

23 lines (22 loc) 554 B
/** * Semantic helper for camelCase strings * * @example 'helloWorld' * @example 'iLovePromptbook' * @public exported from `@promptbook/utils` */ export type string_camelCase = string; /** * @@@ * * @param text @@@ * @param _isFirstLetterCapital @@@ * @returns @@@ * @example 'helloWorld' * @example 'iLovePromptbook' * @public exported from `@promptbook/utils` */ export declare function normalizeTo_camelCase(text: string, _isFirstLetterCapital?: boolean): string_camelCase; /** * TODO: [🌺] Use some intermediate util splitWords */