Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

terminal-table

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

terminal-table - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

5

index.js

@@ -162,3 +162,6 @@ var eaw = require("eastasianwidth");

Table.prototype.horlen = function(){
return Math.max.apply(null, this.table.map(function(row){return row.length}));
return Math.max.apply(null, this.table.reduce(function(arr, row){
arr[arr.length] = row.length;
return arr;
}, []));
};

@@ -165,0 +168,0 @@

2

package.json
{
"name": "terminal-table",
"version": "0.0.8",
"version": "0.0.9",
"description": "View a table in the terminal.",

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

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