UNPKG

217 BPlain TextView Raw
1class Log {
2 blue(str: string | any) {
3 console.log(`logs:\x1b[34m ${str}\x1b[0m`);
4 }
5 green(str: string | any) {
6 console.log(`green:\x1b[32m ${str}\x1b[0m`);
7 }
8}
9
10export default new Log;