MCPcopy
hub / github.com/plotly/dash / logError

Function logError

dash/extract-meta.js:91–99  ·  view source on GitHub ↗
(error, filePath)

Source from the content-addressed store, hash-verified

89 );
90
91function logError(error, filePath) {
92 if (filePath) {
93 process.stderr.write(`Error with path ${filePath}\n`);
94 }
95 process.stderr.write(error + '\n');
96 if (error instanceof Error) {
97 process.stderr.write(error.stack + '\n');
98 }
99}
100
101function isReservedPropName(propName) {
102 reservedPatterns.forEach(reservedPattern => {

Callers 3

checkDocstringFunction · 0.70
parseJSXFunction · 0.70
extract-meta.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…