(s: string)
| 273 | |
| 274 | const isHexId = (id: string) => /^[0-9a-f]{6}$/.test(id); |
| 275 | const slugify = (s: string) => |
| 276 | s.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, ''); |
| 277 | |
| 278 | /** Render one identity entry into `lines`. */ |
| 279 | function renderEntry( |
no test coverage detected