UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

8 lines (7 loc) 277 B
/** * Convert a String to Camel Case (+ first letter). * * Преобразование строки в Camel Case (+ первая буква). * @param value input value/ входное значение */ export declare function toCamelCaseFirst(value: string): string;