A utility function that unslugify a string
unSlugifyString('Hello-world') // 'Hello world' Copy
unSlugifyString('Hello-world') // 'Hello world'
unSlugifyString('Hello_world', '_') // 'Hello world' Copy
unSlugifyString('Hello_world', '_') // 'Hello world'
The string to unslugify
The delimiter to use for the slug
The unslugified string
A utility function that unslugify a string
Example
Example