Socket
Socket
Sign inDemoInstall

sdp

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sdp - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

.nyc_output/1ddd53c3-dc5d-4371-8daa-31cded495a06.json

2

.nyc_output/processinfo/index.json

@@ -1,1 +0,1 @@

{"processes":{"5fcbc816-295e-41b8-9166-5e0a51aade26":{"parent":null,"children":[]}},"files":{"/media/fippo/houseparty/webrtc/sdp/sdp.js":["5fcbc816-295e-41b8-9166-5e0a51aade26"]},"externalIds":{}}
{"processes":{"1ddd53c3-dc5d-4371-8daa-31cded495a06":{"parent":null,"children":[]}},"files":{"/media/fippo/houseparty/webrtc/sdp/sdp.js":["1ddd53c3-dc5d-4371-8daa-31cded495a06"]},"externalIds":{}}

@@ -93,4 +93,6 @@ /* eslint-env node */

default:
// extension handling, in particular ufrag
candidate[parts[i]] = parts[i + 1];
// extension handling, in particular ufrag. Don't overwrite.
if (candidate[parts[i]] === undefined) {
candidate[parts[i]] = parts[i + 1];
}
break;

@@ -97,0 +99,0 @@ }

{
"name": "sdp",
"version": "3.0.0",
"version": "3.0.1",
"description": "SDP parsing and serialization utilities",

@@ -5,0 +5,0 @@ "main": "dist/sdp.js",

@@ -84,4 +84,6 @@ /* eslint-env node */

break;
default: // extension handling, in particular ufrag
candidate[parts[i]] = parts[i + 1];
default: // extension handling, in particular ufrag. Don't overwrite.
if (candidate[parts[i]] === undefined) {
candidate[parts[i]] = parts[i + 1];
}
break;

@@ -88,0 +90,0 @@ }

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