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 (9 loc) 266 B
/** * Determines if the current runtime environment is Node.js. * * @returns {boolean} `true` if the runtime is Node.js, otherwise `false`. */ const isNode = (): boolean => { return typeof module !== "undefined" && !!module.exports; }; export default isNode;