()
| 73 | } |
| 74 | |
| 75 | flushQueue () { |
| 76 | if (this.flushing) return |
| 77 | this.flushing = true |
| 78 | setTimeout(() => { |
| 79 | this.workingRequest() |
| 80 | }, this.delay) |
| 81 | } |
| 82 | |
| 83 | workingRequest () { |
| 84 | while (this.workingList.length < this.limit && this.workList.length) { |
no test coverage detected