Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webrtc

Package Overview
Dependencies
Maintainers
3
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webrtc - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

4

package.json
{
"name": "webrtc",
"version": "1.2.0",
"version": "1.3.0",
"keywords": [

@@ -17,3 +17,3 @@ "webrtc",

"wildemitter": "0.0.5",
"rtcpeerconnection": "2.0.x",
"rtcpeerconnection": "2.1.x",
"getusermedia": "0.2.1",

@@ -20,0 +20,0 @@ "sdp-jingle-json": "1.0.x",

@@ -28,3 +28,3 @@ var test = require('tape');

peer1.pc.on('iceConnectionStateChange', function () {
if (peer1.pc.pc.iceConnectionState == 'connected') {
if (peer1.pc.iceConnectionState == 'connected') {
t.pass('P2P connection established');

@@ -31,0 +31,0 @@ t.end();

@@ -327,2 +327,6 @@ var webrtc = require('webrtcsupport');

this.parent.emit('stopped_speaking', {id: message.from});
} else if (message.type === 'mute') {
this.parent.emit('mute', {id: message.from, name: message.payload.name});
} else if (message.type === 'unmute') {
this.parent.emit('unmute', {id: message.from, name: message.payload.name});
}

@@ -329,0 +333,0 @@ };

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc