New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More →

blessed-contrib

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blessed-contrib - npm Package Compare versions

Comparing version

to
1.0.10

{
"name": "blessed-contrib",
"version": "1.0.9",
"version": "1.0.10",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -49,2 +49,4 @@ var blessed = require('blessed')

c.strokeStyle = 'blue'
if (this.options.barBgColor)
c.strokeStyle = this.options.barBgColor;
c.fillRect(x, barY - h + 1, this.options.barWidth, h);

@@ -56,2 +58,4 @@ } else {

c.fillStyle = 'white'
if (this.options.barFgColor)
c.fillStyle = this.options.barFgColor;
if (this.options.showText)

@@ -58,0 +62,0 @@ c.fillText(bar.data[i].toString(), x + 1, this.canvasSize.height - 4);