UNPKG

kod-temp

Version:

Workano Communications SDK

11 lines (10 loc) 321 B
import Participant from './Participant'; class RemoteParticipant extends Participant { constructor(room, rawParticipant, extra = {}) { super(room, rawParticipant, extra); if (this.name === '<unknown>') { this.name = String(this.number); } } } export default RemoteParticipant;