(name, value, owner)
| 638 | }; |
| 639 | |
| 640 | var warnStyleValueWithSemicolon = function (name, value, owner) { |
| 641 | if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) { |
| 642 | return; |
| 643 | } |
| 644 | |
| 645 | warnedStyleValues[value] = true; |
| 646 | "development" !== 'production' ? warning(false, 'Style property values shouldn\'t contain a semicolon.%s ' + 'Try "%s: %s" instead.', checkRenderMessage(owner), name, value.replace(badStyleValueWithSemicolonPattern, '')) : void 0; |
| 647 | }; |
| 648 | |
| 649 | var warnStyleValueIsNaN = function (name, value, owner) { |
| 650 | if (warnedForNaNValue) { |
no test coverage detected
searching dependent graphs…