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

console-progress-bar

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

console-progress-bar - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

7

app.js

@@ -43,2 +43,3 @@ // Constants.

this.percent = 0;
this.filledParts = 0;
this.maxValue = progressBarOptions.maxValue;

@@ -66,2 +67,8 @@ this.startChars = progressBarOptions.startChars;

// Check if filled parts amount chnaged.
if (filledParts === this.filledParts) {
return;
}
this.filledParts = filledParts;
// Show progress bar.

@@ -68,0 +75,0 @@ const progressBarString = `${this.startChars}${filledPartsCharsString}${notFilledPartCharsString}${this.endChars}`;

2

package.json
{
"name": "console-progress-bar",
"version": "0.0.1",
"version": "0.0.2",
"description": "Console progress bar",

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

@@ -13,2 +13,2 @@ // Import.

}
}, 10);
}, 20);
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc