MCPcopy
hub / github.com/angular-ui/ui-grid / cssKebabToCamel

Function cssKebabToCamel

lib/test/angular/1.7.0/angular.js:3068–3070  ·  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

3066 * @param name Name to normalize
3067 */
3068function cssKebabToCamel(name) {
3069 return kebabToCamel(name.replace(MS_HACK_REGEXP, 'ms-'));
3070}
3071
3072function fnCamelCaseReplace(all, letter) {
3073 return letter.toUpperCase();

Callers 1

angular.jsFile · 0.70

Calls 1

kebabToCamelFunction · 0.70

Tested by

no test coverage detected