webrtc-adapter
Advanced tools
Comparing version 8.2.2 to 8.2.3
@@ -163,3 +163,3 @@ /* | ||
// Fail early if it's not a browser | ||
if (typeof window === 'undefined' || !window.navigator) { | ||
if (typeof window === 'undefined' || !window.navigator || !window.navigator.userAgent) { | ||
result.browser = 'Not a browser.'; | ||
@@ -166,0 +166,0 @@ return result; |
{ | ||
"name": "webrtc-adapter", | ||
"version": "8.2.2", | ||
"version": "8.2.3", | ||
"description": "A shim to insulate apps from WebRTC spec changes and browser prefix differences", | ||
@@ -5,0 +5,0 @@ "license": "BSD-3-Clause", |
@@ -156,3 +156,4 @@ /* | ||
// Fail early if it's not a browser | ||
if (typeof window === 'undefined' || !window.navigator) { | ||
if (typeof window === 'undefined' || !window.navigator || | ||
!window.navigator.userAgent) { | ||
result.browser = 'Not a browser.'; | ||
@@ -159,0 +160,0 @@ return result; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
558339
37
11928