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.

13 lines (12 loc) 280 B
/** * An object representing supported platforms. * * - `DARWIN`: macOS platform identifier. * - `LINUX`: Linux platform identifier. * - `WIN32`: Windows platform identifier. */ export const SUPPORTED_PLATFORMS = { DARWIN: "darwin", LINUX: "linux", WIN32: "win32", };