(pluginName: string)
| 81 | * @returns {boolean} |
| 82 | */ |
| 83 | export function hasPlugin(pluginName: string) { |
| 84 | /* eslint-disable no-unneeded-ternary */ |
| 85 | return getPlugin(pluginName) ? true : false; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Registers plugin under the given name only once. |
nothing calls this directly
no test coverage detected
searching dependent graphs…