UNPKG
@sheto/static
Version:
latest (1.3.0)
1.3.0
1.0.1
一款简单易用的前端静态网页运行工具
@sheto/static
/
logger
/
index.js
11 lines
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module
.
exports
= {
info
(
_txt
) {
console
.
log
(
`\x1b[32m-
${_txt}
\x1b[0m`
); },
warn
(
_txt
) {
console
.
log
(
`\x1b[33m*
${_txt}
\x1b[0m`
); },
error
(
_txt
) {
console
.
log
(
`\x1b[31m*
${_txt}
\x1b[0m`
); } }