15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
'use strict';
|
|
|
|
class LogColors{
|
|
constructor(){
|
|
this.good='green';
|
|
this.notice='yellow';
|
|
this.warn='red';
|
|
this.error='redBG';
|
|
this.debug='magenta';
|
|
this.variable='cyan';
|
|
this.data='blue';
|
|
}
|
|
}
|
|
|
|
module.exports=LogColors;
|