mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
// Universal JS imports only
|
|
import slugify from 'slugify'
|
|
|
|
export function makeSlug ( name ) {
|
|
return slugify(name, {
|
|
lower: true,
|
|
strict: true
|
|
})
|
|
}
|