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
var a= Immutable.fromJS({ a: 0 })
var b = Immutable.fromJS({ b: 0 })
var c = Immutable.fromJS({ c: 0 });
var list = Immutable.fromJS([b, c])
var newlist = list.insert(0, a);
// expect [Object, Object, Object]
// actual: [Array, Object, Object]
pic
The text was updated successfully, but these errors were encountered:
What happened
List.insert makes the inserted object into an array in IE 11
IE version : 11.648.17134.0
I use IE 11 to open https://immutable-js.github.io/immutable-js/docs/#/List to test in the console.
How to reproduce
e.g.
pic

The text was updated successfully, but these errors were encountered: