5 lines
170 B
TypeScript
5 lines
170 B
TypeScript
|
|
export const webRTCSupported = () =>
|
||
|
|
['RTCPeerConnection', 'webkitRTCPeerConnection', 'mozRTCPeerConnection', 'RTCIceGatherer'].some(
|
||
|
|
(item) => item in window
|
||
|
|
);
|