Javascript String blue()

Description

Javascript String blue()

String.prototype.blue = function(){
 return "\x1B[36m" + this.toString() + "\x1B[39m";
}



PreviousNext

Related