react-native-webrtc
Version:
WebRTC for React Native
27 lines • 926 B
JavaScript
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
export default class RTCIceCandidate {
constructor(_ref) {
let {
candidate = '',
sdpMLineIndex = null,
sdpMid = null
} = _ref;
_defineProperty(this, "candidate", void 0);
_defineProperty(this, "sdpMLineIndex", void 0);
_defineProperty(this, "sdpMid", void 0);
if (sdpMLineIndex === null || sdpMid === null) {
throw new TypeError('`sdpMLineIndex` and `sdpMid` must not null');
}
this.candidate = candidate;
this.sdpMLineIndex = sdpMLineIndex;
this.sdpMid = sdpMid;
}
toJSON() {
return {
candidate: this.candidate,
sdpMLineIndex: this.sdpMLineIndex,
sdpMid: this.sdpMid
};
}
}
//# sourceMappingURL=RTCIceCandidate.js.map