Treat functions without a callback as promises
See original GitHub issueThe current behavior is very surprising:
await async.parallel({foo: async()=>Promise.all([1,2])})
// { foo: [ 1, 2 ] }
await async.parallel({foo: ()=>Promise.all([1,2])})
// waits forever because non-async function expects a ballback
Because for short functions, it’s tempting to just write foo: () => doSomething()
. It’s very easy to forget the async
keyword there
But currently this won’t work, it needs to be written as foo: async () => doSomething()
Could we rather check if a callback is passed or not, instead of checking if the function is an AsyncFunction?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:12
Top Results From Across the Web
Using promises - JavaScript - MDN Web Docs
Essentially, a promise is a returned object to which you attach callbacks, instead of passing callbacks into a function. Imagine a function ......
Read more >Aren't promises just callbacks? - Stack Overflow
Promises are not callbacks. A promise represents the future result of an asynchronous operation. Of course, writing them the way you do, you...
Read more >Promises in Node.js: An alternative to callbacks - IBM Developer
A function has one return value. When passing Promise.all two promises that complete, onFulfilled triggers with one argument (an array with both ...
Read more >Introduction to ES6 Promises - 4 functions to avoid callback hell
Callbacks are just blocks of code which can be run in response to events such as as timers going off or messages being...
Read more >Callback and Promises in JavaScript - Medium
Here a function is passed as a parameter inside another function. In asynchronous programming, a piece of code does not sit idle. It...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@caub This is the reason https://github.com/caolan/async/blob/8aecf108b3922bc5211036706a0f6f75e02bd42b/lib/internal/wrapAsync.js#L3:L5
This way, it’s easier to check if the function returns a promise without actually calling it. But still agree with you that this is against the async/await conventions. As adding an
async
keyword without an internalawait
is considered a bad practice in most of cases actually.from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function
… and so it’ll be useless and worst it will add some performance overhead if the code is transpiled by babel for example as it’ll add more code and steps just because of the existence of the
async
keywordbut with this library,
and
are not equivalent!
Even with this issue closed, as of the linked issue above, I’d like to re-emphasize on @caub statements here. The current behaviour confused me a lot, and while I (kind of) understand the technical limitations discussed here, I believe that the documentation is simply not in line with the current behaviour. For e.g. mapLimit it says “Returns: a promise, if no callback is passed” - I started with the callback version, and then basically left out the callback and was surprised that I don’t get the Promise (because I didn’t have the ‘async’ keyword). also, the ‘callback’ statement in the iteratee function isn’t needed then, instead you need to ‘return’ a value. So, either the behaviour should be changed (preferred) or at least documentation and examples should be aligned in my point of view to avoid confusion.