6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
|
|
import slugifyLib from "slugify";
|
||
|
|
|
||
|
|
export function slugify(text: string): string {
|
||
|
|
return slugifyLib(text, { lower: true, strict: true });
|
||
|
|
}
|