UNPKG

modernizr

Version:

Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.

16 lines (15 loc) 375 B
/*! { "name": "RTC Peer Connection", "property": "peerconnection", "tags": ["webrtc"], "authors": ["Ankur Oberoi"], "notes": [{ "name": "W3C Web RTC spec", "href": "https://www.w3.org/TR/webrtc/" }] } !*/ define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) { Modernizr.addTest('peerconnection', !!prefixed('RTCPeerConnection', window)); });