Files
cinny/src/app/utils/rtc.ts
T

5 lines
171 B
TypeScript
Raw Normal View History

export const webRTCSupported = () =>
['RTCPeerConnection', 'webkitRTCPeerConnection', 'mozRTCPeerConnection', 'RTCIceGatherer'].some(
(item) => item in window,
);