redux-storage
Advanced tools
Comparing version 1.4.1 to 1.4.2
@@ -44,3 +44,3 @@ 'use strict'; | ||
value = value.get(keyPart); | ||
} else if (value[keyPart]) { | ||
} else if (value.hasOwnProperty(keyPart)) { | ||
value = value[keyPart]; | ||
@@ -47,0 +47,0 @@ } else { |
{ | ||
"name": "redux-storage", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "Persistence layer for redux with flexible backends", | ||
@@ -29,2 +29,15 @@ "main": "build/index.js", | ||
"author": "Michael Contento <michaelcontento@gmail.com>", | ||
"files": [ | ||
"build/", | ||
"engines/", | ||
"!**/__tests__/**" | ||
], | ||
"babel": { | ||
"presets": [ | ||
"michaelcontento" | ||
] | ||
}, | ||
"eslintConfig": { | ||
"extends": "michaelcontento" | ||
}, | ||
"license": "MIT", | ||
@@ -39,3 +52,3 @@ "devDependencies": { | ||
"eslint-plugin-mocha-only": "0.0.3", | ||
"mocca": "^0.2.2", | ||
"mocca": "^0.3.0", | ||
"release-it": "^2.3.1" | ||
@@ -42,0 +55,0 @@ }, |
25020
16