Closed
Description
The following example:
var Immutable = require("immutable"),
Cursor = require("immutable/contrib/cursor");
var jsData = [{a: 1}, {a: 2}, {a: 3}],
data = Immutable.fromJS(jsData),
cursor = Cursor.from(data);
cursor.forEach(function (c) {
console.log(c);
});
works fine with 3.5.0, but produce the following error with 3.6.0:
RangeError: Maximum call stack size exceeded
Metadata
Metadata
Assignees
Labels
No labels