(name, value)
| 698 | }; |
| 699 | |
| 700 | var warnStyleValueWithSemicolon = function (name, value) { |
| 701 | if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) { |
| 702 | return; |
| 703 | } |
| 704 | |
| 705 | warnedStyleValues[value] = true; |
| 706 | "development" !== 'production' ? warning(false, 'Style property values shouldn\'t contain a semicolon. ' + 'Try "%s: %s" instead.', name, value.replace(badStyleValueWithSemicolonPattern, '')) : undefined; |
| 707 | }; |
| 708 | |
| 709 | /** |
| 710 | * @param {string} name |
no test coverage detected