* Remove from the pool * @param {string} id
(id: string)
| 18 | * @param {string} id |
| 19 | */ |
| 20 | remove(id: string) { |
| 21 | if (Object.prototype.hasOwnProperty.call(this.abortControllers, id)) { |
| 22 | delete this.abortControllers[id] |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Get the abort controller |
no test coverage detected