(value: string)
| 47 | } |
| 48 | |
| 49 | export function normalizeSkillId(value: string): string { |
| 50 | return value.trim().toLowerCase().replace(/[^a-z0-9-]+/g, "-").replace(/^-+|-+$/g, ""); |
| 51 | } |
| 52 | |
| 53 | export function splitSkillList(value: string): string[] { |
| 54 | const out: string[] = []; |
no test coverage detected