UNPKG

@benev/slate

Version:
8 lines (7 loc) 190 B
/** * Convert a camel-case name into a dashed name * - for example * dashify("BigManStyle") * // "big-man-style" */ export declare function dashify(camel: string): string;