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 has been archived by the owner on Apr 22, 2023. It is now read-only.
Problem occurs with a very large sparse array - first index value that is not undefined is in the millions.
With code of the form below, the debug statement never appears and an out of memory error is reported after a couple of minutes.
This may be a requirement of the language or a performance issue rather than a bug.
var res = this.sparse.filter(function(x,i,a)
{
logger.debug(x);
return (x.isLoggedOn && (x.smallArr.indexOf(groupId) != -1));
});
The text was updated successfully, but these errors were encountered: