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.

9 lines (8 loc) 284 B
/** * Capitalizes the first character of a given string after trimming whitespace. * * @param str - The input string to capitalize. * @returns The input string with the first character capitalized. */ declare const capitalize: (str: string) => string; export default capitalize;