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

gracelog

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gracelog - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

20

CHANGELOG.md
# Change log
## Version 0.2.1
## Added
None
## Changed
#### Bug fix in .table() for 0 as a value
## Deprecated
None
## Removed
None
***
## Version 0.2.0

@@ -4,0 +24,0 @@

2

lib/table.js

@@ -37,3 +37,3 @@ var paddings = 2;

for (var name in columns) {
var value = data[name] || '';
var value = data[name] === undefined ? '' : data[name];
lines += this.getLine(name);

@@ -40,0 +40,0 @@ row += this.getRow(name, value);

{
"name": "gracelog",
"description": "Log management module",
"version": "0.2.0",
"version": "0.2.1",
"author": "Nobuyori Takahashi <voltrue2@yahoo.com>",

@@ -6,0 +6,0 @@ "repository": {

@@ -67,2 +67,3 @@ var assert = require('assert');

one: {
id: 0,
name: 'testOne',

@@ -73,2 +74,3 @@ value: 1,

two: {
id: 1,
name: 'testTwo<2>',

@@ -79,2 +81,3 @@ language: 'こんにちは',

three: {
id: 2,
name: 'testThree<3>',

@@ -87,2 +90,3 @@ value: 3,

four: {
id: 3,
name: 'testFour',

@@ -89,0 +93,0 @@ value: 4,

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