replicator icon indicating copy to clipboard operation
replicator copied to clipboard

Support serializing objects that have properties in prototypes

Open AndreyBelym opened this issue 5 years ago • 0 comments

replicator can't properly serialize window.performance.timing because all its properties are in the prototype.

'connectEnd' in window.performance.timing
// true
window.performance.timing.hasOwnProperty('connectEnd')
// false

AndreyBelym avatar Mar 11 '19 11:03 AndreyBelym