Race condition in PouchDB 3.6.0
Issue takes place since data saved assumed to be immutable,
that is optimistic assumption for async process.

To fix this issue data MUST be cloned by DB,
it‘s cheap since V8 clones strings
by reference, not by value, and dereference clone
only when one of strings (src or clone) is changed.

See console for details.