Skip to main content
Deno 2 is finally here πŸŽ‰οΈ
Learn more
Module

x/gustwind/server-deps.ts>fs.EOL

πŸ³πŸ’¨ – Deno powered site creator
Go to Latest
enum fs.EOL
Deprecated
Deprecated

(will be removed in 0.209.0) This will be replaced by an OS-dependent EOL constant.

import { fs } from "https://deno.land/x/gustwind@v0.57.5/server-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.