commandHandler does not check _
as command.
This commit is contained in:
parent
2aab17a10a
commit
948b690946
4 changed files with 2 additions and 2 deletions
|
@ -1042,7 +1042,7 @@ function getClHandler(commandHandler, options) {
|
||||||
cmdKey = clHandler.args[0] || '';
|
cmdKey = clHandler.args[0] || '';
|
||||||
if (!options.caseSensitive) { cmdKey = cmdKey.toLowerCase(); }
|
if (!options.caseSensitive) { cmdKey = cmdKey.toLowerCase(); }
|
||||||
clHandler.hRes =
|
clHandler.hRes =
|
||||||
hIndex.hasOwnProperty(cmdKey) ?
|
cmdKey !== '_' && hIndex.hasOwnProperty(cmdKey) ?
|
||||||
hIndex[cmdKey].apply(res, clHandler.args.slice(1)) :
|
hIndex[cmdKey].apply(res, clHandler.args.slice(1)) :
|
||||||
hIndex.hasOwnProperty('_') ? hIndex._.apply(res, clHandler.args) : null;
|
hIndex.hasOwnProperty('_') ? hIndex._.apply(res, clHandler.args) : null;
|
||||||
return {res: res, forceNext: false};
|
return {res: res, forceNext: false};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "readline-sync",
|
"name": "readline-sync",
|
||||||
"version": "1.2.18",
|
"version": "1.2.19",
|
||||||
"title": "readlineSync",
|
"title": "readlineSync",
|
||||||
"description": "Synchronous Readline for interactively running to have a conversation with the user via a console(TTY).",
|
"description": "Synchronous Readline for interactively running to have a conversation with the user via a console(TTY).",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
BIN
screen_01.png
BIN
screen_01.png
Binary file not shown.
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 3.9 KiB |
BIN
screen_02.gif
BIN
screen_02.gif
Binary file not shown.
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
Loading…
Reference in a new issue