route-node
Advanced tools
Comparing version 1.8.4 to 1.8.5
@@ -0,1 +1,11 @@ | ||
<a name="1.8.5"></a> | ||
## [1.8.5](https://github.com/troch/route-node/compare/v1.8.4...v1.8.5) (2017-08-10) | ||
### Bug Fixes | ||
* prevent empty arrays to be serialised in search part ([af201c4](https://github.com/troch/route-node/commit/af201c4)) | ||
<a name="1.8.4"></a> | ||
@@ -2,0 +12,0 @@ ## [1.8.4](https://github.com/troch/route-node/compare/v1.8.3...v1.8.4) (2017-08-07) |
@@ -907,2 +907,6 @@ define('RouteNode', function () { 'use strict'; | ||
if (Array.isArray(val)) { | ||
return val.length > 0; | ||
} | ||
return val !== undefined && val !== null; | ||
@@ -909,0 +913,0 @@ }).map(function (p) { |
@@ -392,2 +392,6 @@ 'use strict'; | ||
if (Array.isArray(val)) { | ||
return val.length > 0; | ||
} | ||
return val !== undefined && val !== null; | ||
@@ -394,0 +398,0 @@ }).map(function (p) { |
@@ -911,2 +911,6 @@ (function (global, factory) { | ||
if (Array.isArray(val)) { | ||
return val.length > 0; | ||
} | ||
return val !== undefined && val !== null; | ||
@@ -913,0 +917,0 @@ }).map(function (p) { |
@@ -308,2 +308,6 @@ import Path from 'path-parser'; | ||
if (Array.isArray(val)) { | ||
return val.length > 0; | ||
} | ||
return val !== undefined && val !== null; | ||
@@ -310,0 +314,0 @@ }) |
{ | ||
"name": "route-node", | ||
"version": "1.8.4", | ||
"version": "1.8.5", | ||
"description": "A package to create a tree of named routes", | ||
@@ -5,0 +5,0 @@ "main": "dist/commonjs/route-node.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
246314
2469