function toKebabCaseView codetoKebabCase(input: string): stringConverts a string into kebab-case. ExamplesExample 1 import { toKebabCase } from "@std/text/case"; toKebabCase("deno is awesome"); // "deno-is-awesome" Parametersinput: stringView codeThe string that is going to be converted into kebab-case Return TypestringView codeThe string as kebab-case