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
{{ message }}
This repository was archived by the owner on Jul 23, 2021. It is now read-only.
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]
From @Bowen0 on Tue, 21 May 2019 10:56:08 GMT
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

Copied from original issue: immutable-js#1711
The text was updated successfully, but these errors were encountered: