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) • 342 B
text/typescript
/**
* An object containing the clipboard copy commands for different platforms.
*
* - `DARWIN`: Command for macOS (`pbcopy`).
* - `LINUX`: Command for Linux (`xclip -selection clipboard`).
* - `WIN32`: Command for Windows (`clip`).
*/
export const COPY = {
DARWIN: "pbcopy",
LINUX: "xclip -selection clipboard",
WIN32: "clip",
};