ladda-cache
Advanced tools
Comparing version 0.0.11 to 0.0.12
@@ -550,3 +550,3 @@ module.exports = | ||
return Object.keys(query).map(function (x) { | ||
if (_typeof(query[x]) === 'object') { | ||
if (query[x] && _typeof(query[x]) === 'object') { | ||
return createKey(query[x]); | ||
@@ -553,0 +553,0 @@ } else { |
{ | ||
"name": "ladda-cache", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "Data fetching layaer with support for caching", | ||
@@ -5,0 +5,0 @@ "main": "dist/bundle.js", |
@@ -176,3 +176,3 @@ // Concepts: | ||
return Object.keys(query).map(x => { | ||
if (typeof query[x] === 'object') { | ||
if (query[x] && typeof query[x] === 'object') { | ||
return createKey(query[x]); | ||
@@ -179,0 +179,0 @@ } else { |
Sorry, the diff of this file is not supported yet
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
52909
25