I want to be able to copy/clone the store state and modify it locally. How can I copy the object and get rid of the read-only property?
let a = store.getState();
console.log(a.property) // 'property'
let b = copy(a)
b.property = 'newProperty';
console.log(b.property) // 'newProperty'