Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/dax/src/deps.ts>fs.EOL

Cross platform shell tools for Deno inspired by zx.
Very Popular
Go to Latest
enum fs.EOL
import { fs } from "https://deno.land/x/dax@0.34.0/src/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.