We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello Thiago,
Thanks for the great work and effort in this library. I have an issue detecting loops when the loop is inside an async library call:
async.parallel([function(cb) { cb (null, true); }], function(error, result) { var arr_a = [0, 1, 2, 3, 4]; var arr_b = []; arr_b = arr_a; // arr_b = _.clone(arr_a); // infinite loop for (i = 0; i < arr_a.length; i++) { arr_b.push("foo"); } });
Any clues on why is the loop not being detected?
Since I'm building a sandbox for running 'untrusted' code I'm trying to find the best way to avoid a resource bomb like this.
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello Thiago,
Thanks for the great work and effort in this library. I have an issue detecting loops when the loop is inside an async library call:
Any clues on why is the loop not being detected?
Since I'm building a sandbox for running 'untrusted' code I'm trying to find the best way to avoid a resource bomb like this.
Thanks!
The text was updated successfully, but these errors were encountered: