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

x/hex/src/lib/mod.ts>stdx.fs.EOL

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
enum stdx.fs.EOL
import { stdx } from "https://deno.land/x/hex@0.6.5/src/lib/mod.ts";
const { EOL } = stdx.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.