MCPcopy Create free account
hub / github.com/Lucifier129/react-lite / warnBadVendoredStyleName

Function warnBadVendoredStyleName

examples/simple/react.js:691–698  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

689 };
690
691 var warnBadVendoredStyleName = function (name) {
692 if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {
693 return;
694 }
695
696 warnedStyleNames[name] = true;
697 "development" !== 'production' ? warning(false, 'Unsupported vendor-prefixed style property %s. Did you mean %s?', name, name.charAt(0).toUpperCase() + name.slice(1)) : undefined;
698 };
699
700 var warnStyleValueWithSemicolon = function (name, value) {
701 if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) {

Callers 1

warnValidStyleFunction · 0.85

Calls 1

warningFunction · 0.50

Tested by

no test coverage detected