Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/fsrouter/deps.ts>fs.EOL

A file system based router for Deno.
Latest
enum fs.EOL
import { fs } from "https://deno.land/x/fsrouter@3.1.0/deps.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.