Has anyone had any luck using `Object.create` for reconstituting class instances from the plain data objects that IndexDB gives back to you?
Like, from the docs it feels like I should be able to call `Object.create(MyCoolClass, dataFromIDB)`, but that gives an odd error, complaining about one of the root props in the data object.
The bottom line in this MDN example is basically exactly what I am trying to do, so I assume it might work?














