(pluginName: string)
| 69 | * @returns {typeof BasePlugin | undefined} |
| 70 | */ |
| 71 | export function getPlugin(pluginName: string): typeof BasePlugin | undefined { |
| 72 | const unifiedPluginName = toUpperCaseFirst(pluginName); |
| 73 | |
| 74 | return uniquePluginsList.getItem(unifiedPluginName) as typeof BasePlugin | undefined; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Checks if the plugin under the name is already registered. |
searching dependent graphs…