rtcpeerconnection
Advanced tools
Comparing version 8.1.0 to 8.2.0
{ | ||
"name": "rtcpeerconnection", | ||
"version": "8.1.0", | ||
"version": "8.2.0", | ||
"description": "A tiny browser module that normalizes and simplifies the API for WebRTC peer connections.", | ||
@@ -5,0 +5,0 @@ "main": "rtcpeerconnection.js", |
@@ -426,3 +426,3 @@ var util = require('util'); | ||
} | ||
expandedOffer.sdp.split('\r\n').forEach(function (line) { | ||
expandedOffer.sdp.split(/\r?\n/).forEach(function (line) { | ||
if (line.indexOf('a=candidate:') === 0) { | ||
@@ -523,3 +523,3 @@ self._checkLocalCandidate(line); | ||
} | ||
offer.sdp.split('\r\n').forEach(function (line) { | ||
offer.sdp.split(/\r?\n/).forEach(function (line) { | ||
if (line.indexOf('a=candidate:') === 0) { | ||
@@ -596,3 +596,3 @@ self._checkRemoteCandidate(line); | ||
} | ||
answer.sdp.split('\r\n').forEach(function (line) { | ||
answer.sdp.split(/\r?\n/).forEach(function (line) { | ||
if (line.indexOf('a=candidate:') === 0) { | ||
@@ -742,3 +742,3 @@ self._checkRemoteCandidate(line); | ||
} | ||
expandedAnswer.sdp.split('\r\n').forEach(function (line) { | ||
expandedAnswer.sdp.split(/\r?\n/).forEach(function (line) { | ||
if (line.indexOf('a=candidate:') === 0) { | ||
@@ -745,0 +745,0 @@ self._checkLocalCandidate(line); |
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
189914