UNPKG

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