Closed tshemsedinov closed 4 years ago
If callId is not registered in this.calls, following code const [resolve, reject] = this.calls.get(callId); will fail with error: TypeError: undefined is not iterable (cannot read property Symbol(Symbol.iterator))
this.calls
const [resolve, reject] = this.calls.get(callId);
TypeError: undefined is not iterable (cannot read property Symbol(Symbol.iterator))
If callId is not registered in
this.calls
, following codeconst [resolve, reject] = this.calls.get(callId);
will fail with error:TypeError: undefined is not iterable (cannot read property Symbol(Symbol.iterator))