()
| 15 | super(); |
| 16 | } |
| 17 | shift() { |
| 18 | this.length && |
| 19 | Promise.resolve(this[0]()).then( |
| 20 | () => (super.shift(), this.status && this.shift()) |
| 21 | ); |
| 22 | } |
| 23 | push(cb: any): number { |
| 24 | super.push(cb) - 1 || (this.status && this.shift()); |
| 25 | return 0; |
no outgoing calls
no test coverage detected