Skip to main content
Module

x/enzastdlib/vendor/@deno-std-fs.ts>EOL

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
enum EOL
import { EOL } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@deno-std-fs.ts";

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.