function toCamelCaseView codetoCamelCase(input: string): stringConverts a string into camelCase. ExamplesExample 1 import { toCamelCase } from "@std/text/case"; toCamelCase("deno is awesome"); // "denoIsAwesome" Parametersinput: stringView codeThe string that is going to be converted into camelCase Return TypestringView codeThe string as camelCase