Function
Transform a string to kebab-case format
The string to transform
The string in kebab-case format
kebabify("hello world"); // "hello-world"kebabify("C'est un test"); // "ceststun-test"kebabify("foo bar baz"); // "foo-bar-baz" Copy
kebabify("hello world"); // "hello-world"kebabify("C'est un test"); // "ceststun-test"kebabify("foo bar baz"); // "foo-bar-baz"
Transform a string to kebab-case format