UNPKG
@krishna_g_k/my--cli
Version:
latest (1.0.2)
1.0.2
1.0.0
Quickly organize,tree view A Directory
github.com/KRISHNAGK9964/my--cli
KRISHNAGK9964/my--cli
@krishna_g_k/my--cli
/
commands
/
help.js
18 lines
(15 loc)
•
302 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function
help
(
) {
console
.
log
(
`these are my help commands node main tree <filepath> node main organize<filepath> node main help<filepath>`
); }
function
abc
(
) {
console
.
log
(
"hi"
); }
module
.
exports
={
help
:help,
moon
:abc }