MCPcopy Index your code
hub / github.com/plotly/dash / isReservedPropName

Function isReservedPropName

dash/extract-meta.js:101–112  ·  view source on GitHub ↗
(propName)

Source from the content-addressed store, hash-verified

99}
100
101function isReservedPropName(propName) {
102 reservedPatterns.forEach(reservedPattern => {
103 if (reservedPattern.test(propName)) {
104 process.stderr.write(
105 `\nERROR: "${propName}" matches reserved word ` +
106 `pattern: ${reservedPattern.toString()}\n`
107 );
108 failedBuild = true;
109 }
110 });
111 return failedBuild;
112}
113
114function checkDocstring(name, value) {
115 if (

Callers 2

parseJSXFunction · 0.85
getPropsFunction · 0.85

Calls 2

testMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…