You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixed broken serialization of duplicated entries in sequences
For example, with the following code
```
var obj = { test: 'canary' };
var array = [ 0, 1 ];
var arrayWithRefs = [ obj, obj, array, array ];
```
`arrayWithRefs` was serialized as
```
- &ref_0test: canary
- *ref0
- &ref_1- 0
- 1
- *ref1
```
which is incorrect.
0 commit comments