MCPcopy Index your code
hub / github.com/krasimir/react-in-patterns / describeComponentFrame

Function describeComponentFrame

code/composition/public/app.js:3983–3985  ·  view source on GitHub ↗
(name, source, ownerName)

Source from the content-addressed store, hash-verified

3981var ReactDebugCurrentFrame = ReactInternals.ReactDebugCurrentFrame;
3982
3983var describeComponentFrame = function (name, source, ownerName) {
3984 return '\n in ' + (name || 'Unknown') + (source ? ' (at ' + source.fileName.replace(/^.*[\\\/]/, '') + ':' + source.lineNumber + ')' : ownerName ? ' (created by ' + ownerName + ')' : '');
3985};
3986
3987// The Symbol used to tag the ReactElement-like types. If there is no native Symbol
3988// nor polyfill, then a plain number is used for performance.

Callers 2

describeFiberFunction · 0.70
app.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected