Give me a normal string and I will kebabify it!
- Kebabify a string
npm install keebab
import keebab from "keebab";
const str = "Hello World"
keebab(str) // => returns Hello-World
function (input: string): string {}
Throws a type error if the provided values is not a string