UNPKG
@fuzzywuzzyjs/cli
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
fuzzywuzzy-cli
@fuzzywuzzyjs/cli
/
utils
/
log.js
13 lines
(10 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
alert =
require
(
'cli-alerts'
);
module
.
exports
=
info
=>
{
alert
({
type
:
`warning`
,
name
:
`DEBUG LOG`
,
msg
:
``
});
console
.
log
(info);
console
.
log
(); };