摘要: // const PENDING = "pending" const RESOLVE = "resolve" const REJECT = "reject" function MyPromise(fn) { const that = this that.status = PENDING // MyPromise 内部状态 t... 阅读全文
posted @ 2019-07-21 16:30 谢书怜 阅读(314) 评论(0) 推荐(0)