webrtcsupport
Advanced tools
Comparing version 0.7.0 to 0.7.1
{ | ||
"name": "webrtcsupport", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Browser module to detect support for webrtc and extract proper constructors.", | ||
@@ -5,0 +5,0 @@ "main": "webrtcsupport.js", |
@@ -29,3 +29,3 @@ (function(e){if("function"==typeof bootstrap)bootstrap("webrtcsupport",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeWebrtcsupport=e}else"undefined"!=typeof window?window.webrtcsupport=e():global.webrtcsupport=e()})(function(){var define,ses,bootstrap,module,exports; | ||
support: !!PC, | ||
dataChannel: isChrome || isFirefox || (PC.prototype && PC.prototype.createDataChannel), | ||
dataChannel: isChrome || isFirefox || (PC && PC.prototype && PC.prototype.createDataChannel), | ||
prefix: prefix, | ||
@@ -32,0 +32,0 @@ webAudio: !!(AudioContext && AudioContext.prototype.createMediaStreamSource), |
@@ -27,3 +27,3 @@ // created by @HenrikJoreteg | ||
support: !!PC, | ||
dataChannel: isChrome || isFirefox || (PC.prototype && PC.prototype.createDataChannel), | ||
dataChannel: isChrome || isFirefox || (PC && PC.prototype && PC.prototype.createDataChannel), | ||
prefix: prefix, | ||
@@ -30,0 +30,0 @@ webAudio: !!(AudioContext && AudioContext.prototype.createMediaStreamSource), |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6452