UNPKG
make-resume
Version:
latest (1.4.0)
1.4.0
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.0
Separate data from design and build beautiful Resumes.
make-resume.github.io
make-resume/make-resume
make-resume
/
bin
/
models
/
message.js
16 lines
(13 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const
chalk =
require
(
"chalk"
);
class
Message
{
static
error
(
msg
) {
console
.
log
(chalk.
bgRed
(msg)); }
static
info
(
msg
) {
console
.
log
(chalk.
whiteBright
(msg)); }
static
success
(
msg
) {
console
.
log
(chalk.
green
(msg)); } }
module
.
exports
=
Message
;