为这段promise代码加注解
发布于 3 个月前 作者 IEfucker 378 次浏览 来自 问答

求个大神能为这个代码加下注解,尽量详细些

function chainAnimationsPromise(elem, animations) { let ret = null; let p = currentPromise; for(const anim of animations) { p = p.then(function(val) { ret = val; return anim(elem); }) } return p.catch(function(e) { /* ignore and keep going */ }).then(function() { return ret; }); }

回到顶部