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
Collections v5.0.5 seems to break and replace some Array methods, introducing breaking changes.
How to reproduce:
vara=["e1","e2","e3"];console.log(" before ",a.find(function(e){returne=="e1";}));varcollections=require("collections/shim-array");console.log(" after ",a.find(function(e){returne=="e1";}));
DaanVandenBosch, akloeber, agoldis, jkilesc and yang