UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

8 lines (7 loc) 243 B
/** * Convert a String to Camel Case (upper). * * Преобразование строки в Camel Case (upper). * @param value input value/ входное значение */ export declare function toCamelCase(value: string): string;