UNPKG

222 BTypeScriptView Raw
1/**
2 * Camelcases a hyphenated string, for example:
3 *
4 * > camelize('background-color')
5 * < "backgroundColor"
6 */
7declare function camelize(string: string): string;
8
9declare namespace camelize {}
10
11export = camelize;