12 lines
174 B
JavaScript
Raw Permalink Normal View History

2025-06-04 09:42:48 +08:00
'use strict';
function makeTitle(cmd, argv) {
if (!argv || argv.length === 0) {
return cmd;
}
return [cmd].concat(argv).join(' ');
}
module.exports = makeTitle;