commandos
Version:
Command line parser, compatible with DOS style command
23 lines (16 loc) • 314 B
JavaScript
/**
* @author Youngoat@163.com
* @create 2021-03-26
*/
;
const MODULE_REQUIRE = 1
/* built-in */
/* NPM */
, manon = require('manon')
/* in-package */
, more = require('./lib/more')
;
module.exports = function(helptext) {
let text = manon.format(helptext, 'console');
more(text);
};