slugify
Perform the following operations on a string to make it slug-friendly:
- trim it
- convert to lowercase
- remove any character not a-z, 0-9, or _
- dasherize it
Parameters
Returns
Function defined in common/src/utils/slugify.ts:9
Perform the following operations on a string to make it slug-friendly: