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
The following sentence from the mori website is currently not really true:
"All Mori collections support ES6 iteration via foo[Symbol.iterator] or foo['@@iterator']"
JSFiddle is ES5, so of course it doesn't work there. You would need to bring in something like Babel to start seeing those features work. That said, you're still correct that it's undefined even in an ES6 context.
The following sentence from the mori website is currently not really true:
"All Mori collections support ES6 iteration via foo[Symbol.iterator] or foo['@@iterator']"
mori.list(1, 2, 3)['@@iterator'] returns undefined.
See also: http://jsfiddle.net/4utqrsta
The text was updated successfully, but these errors were encountered: