(value)
| 51 | } |
| 52 | |
| 53 | function isNonEmptyString(value) { |
| 54 | return typeof value === "string" && value.trim().length > 0; |
| 55 | } |
| 56 | |
| 57 | function validatePluginName(name, prefix, errors) { |
| 58 | if (!isNonEmptyString(name)) { |
no outgoing calls
no test coverage detected