(name: string)
| 50 | * Get a skill by name. |
| 51 | */ |
| 52 | export function getSkillByName(name: string): SkillDefinition | undefined { |
| 53 | return skillsCache[name] |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Get the number of loaded skills. |
no outgoing calls
no test coverage detected