Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
isMatchingComponent(componentName = 'dummy', path = 'empty') {
let key = String(componentName) + '__' + String(path);
if (!(key in matchingResults)) {
matchingResults[key] = matchingComponent(componentName, path);
}
return matchingResults[key];
},
triggerInRunLoop(name, attrs) {