Socket
Socket
Sign inDemoInstall

rtcpeerconnection

Package Overview
Dependencies
Maintainers
5
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rtcpeerconnection - npm Package Compare versions

Comparing version 4.0.0 to 4.1.0

.tern-port

4

package.json
{
"name": "rtcpeerconnection",
"version": "4.0.0",
"version": "4.1.0",
"description": "A tiny browser module that normalizes and simplifies the API for WebRTC peer connections.",

@@ -30,3 +30,3 @@ "main": "rtcpeerconnection.js",

"tape": "^4.0.0",
"travis-multirunner": "^2.5.0",
"travis-multirunner": "^3.0.0",
"testling": "^1.7.1"

@@ -33,0 +33,0 @@ },

@@ -6,3 +6,3 @@ var util = require('util');

var WildEmitter = require('wildemitter');
var peerconn = require('traceablepeerconnection');
var Peerconn = require('traceablepeerconnection');
var adapter = require('webrtc-adapter-test');

@@ -116,3 +116,3 @@

this.pc = new peerconn(config, constraints);
this.pc = new Peerconn(config, constraints);

@@ -307,6 +307,4 @@ this.getLocalStreams = this.pc.getLocalStreams.bind(this.pc);

var mediaConstraints = hasConstraints && constraints ? constraints : {
mandatory: {
OfferToReceiveAudio: true,
OfferToReceiveVideo: true
}
offerToReceiveAudio: 1,
offerToReceiveVideo: 1
};

@@ -313,0 +311,0 @@ cb = hasConstraints ? cb : constraints;

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