Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 7 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | export const isPluginEnabled = (plugins = {}, name) => { |
||
2 | const enabled = plugins |
||
3 | && plugins[name] |
||
4 | && plugins[name].enabled; |
||
5 | |||
6 | return !!enabled; |
||
7 | }; |