Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ter/deps/std.ts>fs.format

A tiny wiki-style site generator with Zettelkasten flavor.
Go to Latest
function fs.format
import { fs } from "https://deno.land/x/ter@0.15.51/deps/std.ts";
const { format } = fs;

Format the file to the targeted EOL.

Examples

Example 1

import { EOL, format } from "https://deno.land/std@0.224.0/fs/mod.ts";

const CRLFinput = "deno\r\nis not\r\nnode";

format(CRLFinput, EOL.LF); // output "deno\nis not\nnode"

Parameters

content: string
eol: EOL

Returns

string