mirror of
https://github.com/Paris-est-Ludique/ForceOrange.git
synced 2025-06-08 01:04:20 +02:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
export const stringToSlug = (str: string) => {
|
|
return str
|
|
.toLowerCase()
|
|
.replace(/ /g, '-')
|
|
.replace(/[^\w-]+/g, '')
|
|
}
|
|
|
|
export const lowerString = (str: string) => {
|
|
return str.trim().toLowerCase()
|
|
} |