Is there a way to track the location of process.nextTick
, which is called recursively? For instance. in this case
var normal = function(cb) { process.nextTick(cb); } var bad = function() { process.nextTick(bad); }; normal(function() { bad(); });
What is the problem on line 5 of the bad function?
source share