UNPKG

@twilio/voice-sdk

Version:
18 lines (14 loc) 297 B
// @ts-nocheck import PeerConnection from './peerconnection'; import RTCPC from './rtcpc'; function enabled() { return RTCPC.test(); } function getMediaEngine() { return typeof RTCIceGatherer !== 'undefined' ? 'ORTC' : 'WebRTC'; } export { enabled, getMediaEngine, PeerConnection, };