UNPKG

crnc

Version:

currency conversion and functionality for the web

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;