react-redux-saga-router
Advanced tools
Comparing version 0.3.5 to 0.3.6
@@ -60,2 +60,5 @@ 'use strict'; | ||
} | ||
if (state[key] === undefined && template[key] !== undefined) { | ||
return false; | ||
} | ||
return stateExists(state[key], template[key], full); | ||
@@ -62,0 +65,0 @@ default: |
{ | ||
"name": "react-redux-saga-router", | ||
"version": "0.3.5", | ||
"version": "0.3.6", | ||
"description": "elegant powerful routing based on the simplicity of storing url as state", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -41,2 +41,5 @@ export function matchedRoute(state, name) { | ||
} | ||
if (state[key] === undefined && template[key] !== undefined) { | ||
return false | ||
} | ||
return stateExists(state[key], template[key], full) | ||
@@ -43,0 +46,0 @@ default : |
92681
1809