Le SELECT du choix de rôle devient un radio

This commit is contained in:
2023-11-15 11:49:42 +01:00
parent d78731df11
commit c21f1ce5a4
56 changed files with 8612 additions and 23 deletions

20
node_modules/wrtc/lib/rtcpeerconnectioniceevent.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
'use strict';
function RTCPeerConnectionIceEvent(type, eventInitDict) {
Object.defineProperties(this, {
type: {
value: type,
enumerable: true
},
candidate: {
value: eventInitDict.candidate,
enumerable: true
},
target: {
value: eventInitDict.target,
enumerable: true
}
});
}
module.exports = RTCPeerConnectionIceEvent;