json-to-table
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -48,3 +48,3 @@ var traverse = require('traverse'), | ||
} | ||
if (header.indexOf('`') > -1) { // One of those special cases where a path is nested, AND has a dot in the name. | ||
if (header.indexOf('`') > -1 && header.indexOf('.') > -1) { // One of those special cases where a path is nested, AND has a dot in the name. | ||
var parts = header.split('.`'), | ||
@@ -51,0 +51,0 @@ head = parts[0].replace(/\`/g, ''), |
{ | ||
"name": "json-to-table", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Convert an array of Objects into a table format", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17653