Could someone please confirm if these two methods are effectively the same
process.nextTick(callback.bind(undefined, results));
Vs.
process.nextTick(function() {
callback(results));
});
And if they successfully make the callbacks asynchronous from a node js perspective.