Appearance
toKebabCase is a function convert a string to kebab case.
toKebabCase
This function will convert any string into kebab case:
import { toKebabCase } from "@titocandradev/neatcore"; const result = toKebabCase("hello world"); // hello-world