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

Function kebabToCamel

lib/test/angular/1.8.0/angular.js:3158–3161  ·  view source on GitHub ↗

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

(name)

Source from the content-addressed store, hash-verified

3156 * @param name Name to normalize
3157 */
3158function kebabToCamel(name) {
3159 return name
3160 .replace(DASH_LOWERCASE_REGEXP, fnCamelCaseReplace);
3161}
3162
3163var SINGLE_TAG_REGEXP = /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/;
3164var HTML_REGEXP = /<|&#?\w+;/;

Callers 2

cssKebabToCamelFunction · 0.70
jqLiteDataFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected