MCPcopy Create free account
hub / github.com/Lobos/react-ui / warnBadVendoredStyleName

Function warnBadVendoredStyleName

docs/lib/react.js:631–638  ·  view source on GitHub ↗
(name, owner)

Source from the content-addressed store, hash-verified

629 };
630
631 var warnBadVendoredStyleName = function (name, owner) {
632 if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {
633 return;
634 }
635
636 warnedStyleNames[name] = true;
637 "development" !== 'production' ? warning(false, 'Unsupported vendor-prefixed style property %s. Did you mean %s?%s', name, name.charAt(0).toUpperCase() + name.slice(1), checkRenderMessage(owner)) : void 0;
638 };
639
640 var warnStyleValueWithSemicolon = function (name, value, owner) {
641 if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) {

Callers 1

warnValidStyleFunction · 0.85

Calls 2

warningFunction · 0.85
checkRenderMessageFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…