* Converts kebab-case to camelCase. * There is also a special case for the ms prefix starting with a lowercase letter. * @param name Name to normalize
(name)
| 3066 | * @param name Name to normalize |
| 3067 | */ |
| 3068 | function cssKebabToCamel(name) { |
| 3069 | return kebabToCamel(name.replace(MS_HACK_REGEXP, 'ms-')); |
| 3070 | } |
| 3071 | |
| 3072 | function fnCamelCaseReplace(all, letter) { |
| 3073 | return letter.toUpperCase(); |
no test coverage detected