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

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

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

Platform-specific conventions for the line ending format (i.e., the "end-of-line").

Members

CRLF = "\r\n"

Carriage Return + Line Feed. Historically used in Windows and early DOS systems.

LF = "\n"

Line Feed. Typically used in Unix (and Unix-like) systems.