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

console-gui-tools

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

console-gui-tools - npm Package Compare versions

Comparing version 1.1.8 to 1.1.9

2

package.json
{
"name": "console-gui-tools",
"version": "1.1.8",
"version": "1.1.9",
"description": "A simple library to draw option menu, text popup or other widgets and layout on a Node.js console.",

@@ -5,0 +5,0 @@ "main": "src/ConsoleGui.js",

@@ -13,3 +13,3 @@ # console-gui-tools

![Animation](https://user-images.githubusercontent.com/14907987/164765317-062c0fe9-7af3-4aa5-a96e-9407a9245341.gif)
![Animation](https://user-images.githubusercontent.com/14907987/164886106-b9c1e295-f4bf-4cc3-9065-365e1141dfd9.gif)

@@ -16,0 +16,0 @@

@@ -270,3 +270,3 @@ import { EventEmitter } from "events"

if (colIndex === row.length - 1) {
content += " ".repeat(emptySpace / 2) + "│\n"
content += " ".repeat(!emptySpace % 2 ? emptySpace / 2 : Math.round(emptySpace / 2)) + "│\n"
} else {

@@ -276,3 +276,3 @@ content += " ".repeat(spaceBetweenButtons)

} else if (colIndex === row.length) {
content += " ".repeat(emptySpace / 2) + "│\n"
content += " ".repeat(!emptySpace % 2 ? emptySpace / 2 : Math.round(emptySpace / 2)) + "│\n"
}

@@ -279,0 +279,0 @@ })

Sorry, the diff of this file is not supported yet

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