Results 1 comments of Turner

finally 那边是不是可以直接这样写: ```js Promise.prototype.finally = function (onFinally) { return this.then(onFinally, onFinally) } ```