function formatView codeformat(content: string,eol: EOL): stringFormat the file to the targeted EOL. ExamplesExample 1 import { LF, format } from "@std/fs"; const CRLFinput = "deno\r\nis not\r\nnode"; format(CRLFinput, LF); // output "deno\nis not\nnode" Parameterscontent: stringView codeeol: EOLView codeReturn TypestringView code