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

Function kebabToCamel

lib/test/angular/1.7.0/angular.js:3080–3083  ·  view source on GitHub ↗

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

(name)

Source from the content-addressed store, hash-verified

3078 * @param name Name to normalize
3079 */
3080function kebabToCamel(name) {
3081 return name
3082 .replace(DASH_LOWERCASE_REGEXP, fnCamelCaseReplace);
3083}
3084
3085var SINGLE_TAG_REGEXP = /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/;
3086var HTML_REGEXP = /<|&#?\w+;/;

Callers 2

cssKebabToCamelFunction · 0.70
jqLiteDataFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected