UNPKG

vegan-ipsum

Version:

Generates passages of vegan-themed placeholder text suitable for use in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.

11 lines (10 loc) 271 B
/** * An object representing line endings for different platforms. * * - `POSIX`: Line ending for POSIX-compliant systems (`\n`). * - `WIN32`: Line ending for Windows systems (`\r\n`). */ export declare const LINE_ENDINGS: { POSIX: string; WIN32: string; };