treetabular
Advanced tools
Comparing version 3.2.0 to 3.2.1
## treetabular | ||
3.2.1 / 2017-02-25 | ||
================== | ||
* Fix - `tree.getParents` allows `undefined` parents now. #10 | ||
3.2.0 / 2017-02-25 | ||
@@ -4,0 +9,0 @@ ================== |
@@ -39,3 +39,3 @@ 'use strict'; | ||
if (cell[parentField] === null) { | ||
if (cell[parentField] === null || typeof cell[parentField] === 'undefined') { | ||
break; | ||
@@ -42,0 +42,0 @@ } |
{ | ||
"name": "treetabular", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "Tree utilities", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
49842