calcom/apps/web/lib/slugify.ts
2022-02-10 14:22:45 -07:00

5 lines
129 B
TypeScript

export const slugify = (str: string) => {
return str.replace(/[^a-zA-Z0-9-]/g, "-").toLowerCase();
};
export default slugify;