function fs.formatimport { fs } from "https://dotland.deno.dev/x/dax@0.39.2/src/deps.ts"; const { format } = fs; format(content: string, eol: EOL): stringFormat the file to the targeted EOL. ExamplesExample 1 import { LF, format } from "https://deno.land/std@$STD_VERSION/fs/mod.ts"; const CRLFinput = "deno\r\nis not\r\nnode"; format(CRLFinput, LF); // output "deno\nis not\nnode" Parameterscontent: stringeol: EOLReturnsstring