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

Function kebabToCamel

lib/test/angular/1.6.7/angular.js:3104–3107  ·  view source on GitHub ↗

* Converts kebab-case to camelCase. * @param name Name to normalize

(name)

Source from the content-addressed store, hash-verified

3102 * @param name Name to normalize
3103 */
3104function kebabToCamel(name) {
3105 return name
3106 .replace(DASH_LOWERCASE_REGEXP, fnCamelCaseReplace);
3107}
3108
3109var SINGLE_TAG_REGEXP = /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/;
3110var HTML_REGEXP = /<|&#?\w+;/;

Callers 2

cssKebabToCamelFunction · 0.70
jqLiteDataFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected