'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;