UNPKG
@steventripari/cli-todo
Version:
latest (0.0.1)
0.0.1
CLI to manage todos anywhere
@steventripari/cli-todo
/
utils
/
log.js
13 lines
(10 loc)
•
169 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
(); };