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

webrtc-test-suite

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webrtc-test-suite - npm Package Compare versions

Comparing version 1.2.6 to 1.2.7

5

checks/internet.js

@@ -9,3 +9,6 @@ export default function checkInternetSpeed(checkerFile, verbose = false){

fetch(`${checkerFile}${glue}rtccheckertimestamp_noconflict=${startTime}`) // to avoid cache
.then(resp=>resp.blob())
.then(resp=>{
if(resp.status !== 200) return reject(new Error("Could not load the checker file"));
return resp.blob();
})
.then(bl=>{

@@ -12,0 +15,0 @@ verbose && console.log(`[internet-connection]: Fetched the checker file`);

2

package.json
{
"name": "webrtc-test-suite",
"version": "1.2.6",
"version": "1.2.7",
"main": "index.js",

@@ -5,0 +5,0 @@ "repository": "git@github.com:theanam/webrtc-test-suite.git",

@@ -37,3 +37,3 @@ # Real life Capability testing and utilities for WebRTC.

```html
<script src="https://unpkg.com/webrtc-test-suite@1.2.6/dist/index.js"></script>
<script src="https://unpkg.com/webrtc-test-suite@1.2.7/dist/index.js"></script>
```

@@ -40,0 +40,0 @@ Yoou will get a global object called: `_rtc`. And you can access all the functionalities from that object.

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