title
Version:
Capitalize your titles properly
16 lines (13 loc) • 402 B
JavaScript
import chalk from "chalk";
const { yellow } = chalk;
const help = `
Usage: ${yellow("title")} [options] <input>
Options:
${yellow("-h, --help")} Show the usage information
${yellow("-v, --version")} Show the version number
${yellow("-s, --special")} Words to capitalize as they are passed
${yellow("-n, --no-copy")} Don't copy output to clipboard
`;
export {
help
};