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

route-node

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

route-node - npm Package Compare versions

Comparing version 1.8.4 to 1.8.5

10

CHANGELOG.md

@@ -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)

4

dist/amd/route-node.js

@@ -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 @@ })

2

package.json
{
"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",

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