-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RangeError: Maximum call stack size exceeded #66
Comments
Sounds like you're probably using a synchronous function. With an async function, this won't happen. |
I need the synchronous version... |
That would be Array.prototype.map in modern browsers. You might want to look at underscore.js if you need support for older versions. |
First I am coding in server side (Node). |
For example : If my collection have less than 3000 items everything work fine but over a certain limit (~3500) not anymore... |
try |
Same problem here, I am not using sync functions in mapSeries, and bobrik's suggestion does not solve it. |
I have this error when I use mapSeries with a large array :
RangeError: Maximum call stack size exceeded
The text was updated successfully, but these errors were encountered: