UNPKG
chnp-cli
Version:
latest (1.0.1)
1.0.1
1.0.0
Code Highlight and Print Command Line version
chnp-cli
/
helpers
/
exec_status.js
10 lines
(9 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
STATUS
=
{ undefined:
1
, SUCESSFULL:
0
, UNSUCCESSFULL:
1
, PENDING:
2
, };
const
meaning
=
[
"SUCCESSFULL"
,
"UNSUCCESSFULL"
,
"PENDING"
];
const
colors
=
[
"green"
,
"red"
,
"yellow"
];
module
.
exports
= { STATUS, meaning, colors };