UNPKG
vegana-js
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
0.0.0
vegana is a container based js framework
github.com/gzbakku/vegana
gzbakku/vegana
vegana-js
/
common.js
16 lines
(11 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const chalk =
require
(
'chalk'
);
module
.exports = {
error
:
function
(error)
{ console.
log
(chalk.red(
'!!! '
+
error
));
return
false
; }, tell :
function
(message)
{ console.
log
(chalk.cyanBright(
'>>> '
+ message));
return
true
; } };