function toSnakeCaseView codetoSnakeCase(input: string): stringConverts a string into snake_case. ExamplesExample 1 import { toSnakeCase } from "@std/text/case"; toSnakeCase("deno is awesome"); // "deno_is_awesome" Parametersinput: stringView codeThe string that is going to be converted into snake_case Return TypestringView codeThe string as snake_case