It would be nice if there was a way to pass in results from a dependency directly into the function. So instead of doing this: ``` js async.auto({ a: testFunction, b: ['a', function(callback, results){ testFunction2(results.a, callback); }] }) ``` We could do something like, ``` js async.auto({ a: testFunction, b: ['a', async.apply(testFunction2, <resultsOfA>)] }) ```