(string)
| 4587 | var warnedForInfinityValue = false; |
| 4588 | |
| 4589 | var camelize = function (string) { |
| 4590 | return string.replace(hyphenPattern, function (_, character) { |
| 4591 | return character.toUpperCase(); |
| 4592 | }); |
| 4593 | }; |
| 4594 | |
| 4595 | var warnHyphenatedStyleName = function (name) { |
| 4596 | if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) { |
no test coverage detected