UNPKG
@wallerbuilt/vaq
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A cli for managing vim plugins through vim-plug
github.com/mdxprograms/vaq
mdxprograms/vaq
@wallerbuilt/vaq
/
lib
/
colorStates.js
9 lines
(7 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
chalk =
require
(
'chalk'
)
module
.
exports
= {
normalMsg
:
(
msg
) =>
console
.
log
(chalk.
yellow
(msg)),
errorMsg
:
(
msg
) =>
console
.
log
(chalk.
red
(msg)),
infoMsg
:
(
msg
) =>
console
.
log
(chalk.
blue
(msg)),
successMsg
:
(
msg
) =>
console
.
log
(chalk.
green
(msg)) }