UNPKG

@visulima/fs

Version:

Human friendly file system utilities for Node.js

8 lines (6 loc) 259 B
declare const LF: "\n"; declare const CRLF: "\r\n"; declare const EOL: "\n" | "\r\n"; declare const detect: (content: string) => typeof EOL | null; declare const format: (content: string, eol: typeof EOL) => string; export { CRLF, EOL, LF, detect, format };