mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-18 07:31:04 +00:00
17 lines
401 B
JavaScript
17 lines
401 B
JavaScript
/*!
|
|
{
|
|
"name": "RTC Peer Connection",
|
|
"property": "peerconnection",
|
|
"caniuse": "rtcpeerconnection",
|
|
"tags": ["webrtc"],
|
|
"authors": ["Ankur Oberoi"],
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://www.w3.org/TR/webrtc/"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
|
|
Modernizr.addTest('peerconnection', !!prefixed('RTCPeerConnection', window));
|
|
});
|