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) 374 B
/** * An object containing regular expressions for validating formats and units. * * - `FORMATS`: Matches supported text formats (`plain` or `html`), case-insensitive. * - `UNITS`: Matches supported unit types (`paragraphs`, `sentences`, `words`), case-insensitive. */ export const REGEX = { FORMATS: /^(plain|html)$/i, UNITS: /^(paragraphs|sentences|words)$/i, };