(raw: string)
| 10 | |
| 11 | /** Normalize a name to a comparable token: lowercase, alphanumerics only. */ |
| 12 | export function normalizeNameToken(raw: string): string { |
| 13 | return raw.toLowerCase().replace(/[^a-z0-9]/g, ''); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Tokens that name the PROJECT as a whole — its `go.mod` module, `package.json` |
no outgoing calls
no test coverage detected