mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 03:05:07 +08:00
14 lines
263 B
JavaScript
14 lines
263 B
JavaScript
const chalk = require('chalk');
|
|
|
|
module.exports = {
|
|
error(msg) {
|
|
return console.log(chalk.red(msg));
|
|
},
|
|
warn(msg) {
|
|
return console.log(chalk.yellow(msg));
|
|
},
|
|
message(msg) {
|
|
return console.log(chalk.cyan(msg));
|
|
}
|
|
};
|