UNPKG

fracturedjsonjs

Version:

JSON formatter that produces highly readable but fairly compact output

14 lines (13 loc) 264 B
/** * Specifies what sort of line endings to use. */ export declare enum EolStyle { /** * Carriage Return, followed by a line feed. Windows-style. */ Crlf = 0, /** * Just a line feed. Unix-style (including Mac). */ Lf = 1 }