Le SELECT du choix de rôle devient un radio
This commit is contained in:
28
node_modules/wrtc/lib/icecandidate.js
generated
vendored
Normal file
28
node_modules/wrtc/lib/icecandidate.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
function RTCIceCandidate(candidateInitDict) {
|
||||
[
|
||||
'candidate',
|
||||
'sdpMid',
|
||||
'sdpMLineIndex',
|
||||
'foundation',
|
||||
'component',
|
||||
'priority',
|
||||
'address',
|
||||
'protocol',
|
||||
'port',
|
||||
'type',
|
||||
'tcpType',
|
||||
'relatedAddress',
|
||||
'relatedPort',
|
||||
'usernameFragment'
|
||||
].forEach(property => {
|
||||
if (candidateInitDict && property in candidateInitDict) {
|
||||
this[property] = candidateInitDict[property];
|
||||
} else {
|
||||
this[property] = null;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = RTCIceCandidate;
|
||||
Reference in New Issue
Block a user