Don't clone prev, there's no need

This commit is contained in:
John Cowen 2018-07-06 13:09:23 +01:00
parent 3317f996a7
commit 6170f524ba
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ export default function(obj) {
// non-recursive for the moment
return Object.keys(obj).reduce(function(prev, item, i, arr) {
if (obj[item] !== null) {
return { ...prev, ...{ [item]: obj[item] } };
prev[item] = obj[item];
}
return prev;
}, {});