| 360 | }; |
| 361 | |
| 362 | interface SlugifyOptions { |
| 363 | replacement: string; |
| 364 | remove: string | RegExp; |
| 365 | charmap: Record<string, string>; |
| 366 | multicharmap: Record<string, string>; |
| 367 | } |
| 368 | |
| 369 | const pretty: SlugifyOptions = { |
| 370 | replacement: "-", |
nothing calls this directly
no outgoing calls
no test coverage detected