title
Version:
Capitalize your titles properly
16 lines (11 loc) • 635 B
JavaScript
;Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }var _chalk = require('chalk'); var _chalk2 = _interopRequireDefault(_chalk);
const { yellow } = _chalk2.default;
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
`;
exports.help = help;