Native Async functions in async.waterfall pass undefined

node v18.11.0
version: 1.0.0
endpointsharetweet
const async = require('async');
async.waterfall( [ async () => {}, (...args) => { args.at(-1)(null, args); }, ], (error, result) => { console.log('error', error, '// result', result); }, );
Loading…

no comments

    sign in to comment