(value: string)
| 20378 | } |
| 20379 | |
| 20380 | function tokenizePluginAliasWords(value: string): string[] { |
| 20381 | return String(value ?? '') |
| 20382 | .replace(/@.*$/u, '') |
| 20383 | .replace(/([a-z0-9])([A-Z])/g, '$1 $2') |
| 20384 | .toLowerCase() |
| 20385 | .split(/[^a-z0-9]+/u) |
| 20386 | .map((entry) => entry.trim()) |
| 20387 | .filter(Boolean); |
| 20388 | } |
| 20389 | |
| 20390 | function validatePluginAliasChange({ |
| 20391 | alias, |
no outgoing calls
no test coverage detected