MCPcopy Index your code
hub / github.com/angular-ui/ui-grid / cssKebabToCamel

Function cssKebabToCamel

lib/test/angular/1.6.7/angular.js:3092–3094  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

3090 * @param name Name to normalize
3091 */
3092function cssKebabToCamel(name) {
3093 return kebabToCamel(name.replace(MS_HACK_REGEXP, 'ms-'));
3094}
3095
3096function fnCamelCaseReplace(all, letter) {
3097 return letter.toUpperCase();

Callers 1

angular.jsFile · 0.70

Calls 1

kebabToCamelFunction · 0.70

Tested by

no test coverage detected