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

sdp-jingle-json

Package Overview
Dependencies
Maintainers
3
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sdp-jingle-json - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

2

lib/parsers.js

@@ -185,2 +185,4 @@ exports.lines = function (sdp) {

candidate.generation = parts[i + 1];
} else if (parts[i] === 'tcptype') {
candidate.tcpType = parts[i + 1];
}

@@ -187,0 +189,0 @@ }

@@ -193,2 +193,6 @@ var senders = {

}
if (candidate.tcpType) {
sdp.push('tcptype');
sdp.push(candidate.tcpType);
}

@@ -195,0 +199,0 @@ sdp.push('generation');

2

package.json
{
"name": "sdp-jingle-json",
"version": "1.1.2",
"version": "1.1.3",
"description": "A parser/serializer for SDP to JSON. Useful for converting SDP to other formats like Jingle for WebRTC signalling",

@@ -5,0 +5,0 @@ "main": "index.js",

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