v2.3.0
版本发布时间: 2017-04-07 05:32:14
caolan/async最新发布版本:v2.3.0(2017-04-07 05:32:14)
- Added support for ES2017
async
functions. Wherever you can pass a Node-style/CPS function that uses a callback, you can also pass anasync
function. Previously, you had to wrapasync
functions withasyncify
. The caveat is that it will only work ifasync
functions are supported natively in your environment, transpiled implementations can't be detected. (#1386, #1390)