()
| 4 | // the chain on that key will be cleared. |
| 5 | export class KeyPromiseQueue { |
| 6 | constructor() { |
| 7 | this.queue = {}; |
| 8 | } |
| 9 | |
| 10 | enqueue(key, operation) { |
| 11 | const tuple = this.beforeOp(key); |
nothing calls this directly
no outgoing calls
no test coverage detected