function toPascalCaseView codetoPascalCase(input: string): stringConverts a string into PascalCase. ExamplesExample 1 import { toPascalCase } from "@std/text/case"; toPascalCase("deno is awesome"); // "DenoIsAwesome" Parametersinput: stringView codeThe string that is going to be converted into PascalCase Return TypestringView codeThe string as PascalCase