原创 promise 實現(es6 完整源碼)

概覽 const PENDING = Symbol('PENDING'); const FULFILLED = Symbol('FULFILLED'); const REJECTED = Symbol('REJECTED'); class