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.
23 lines (20 loc) • 679 B
text/typescript
import { SUPPORTED_PLATFORMS } from "../../constants/platforms";
import { COPY } from "../constants/commands";
/**
* Retrieves the appropriate copy command for the specified platform.
*
* @param {string} platform - The process platform (e.g., "darwin", "win32", "linux").
* @returns {string} The copy command for the specified platform.
*/
const getCopyCommand = (platform: string = ""): string => {
switch (platform.toLowerCase()) {
case SUPPORTED_PLATFORMS.DARWIN:
return COPY.DARWIN;
case SUPPORTED_PLATFORMS.WIN32:
return COPY.WIN32;
case SUPPORTED_PLATFORMS.LINUX:
default:
return COPY.LINUX;
}
};
export default getCopyCommand;