UNPKG

@devlander/utils

Version:

Comprehensive JavaScript and TypeScript utilities for seamless development. Includes object manipulation, data validation, and more.

8 lines (7 loc) 244 B
/** * Converts a dash-separated string to camel case. * * @param dashName - The dash-separated string to convert. * @returns The camel case version of the input string. */ export declare function dashToCamelCase(dashName: string): string;