Socket
Socket
Sign inDemoInstall

anytv-commons

Package Overview
Dependencies
1
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.6 to 0.0.7

19

index.js

@@ -458,2 +458,4 @@ 'use strict';

this._additional_args = [];
// default auth type

@@ -483,3 +485,4 @@ this.auth_type = 'auto';

args () {
this.request.args(...Array.from(arguments));
this._additional_args = Array.from(arguments);
this.request.args(...arguments);
return this;

@@ -515,3 +518,8 @@ }

this.done = true;
this.next(new Error('YTRequest timed out'));
this.next(
new Error('YTRequest timed out'),
null,
this.request,
this._additional_args
);
}

@@ -534,3 +542,8 @@ }, 1000 * 60 * 5);

this.done = true;
return this.next(new FatalError('Need an api key or access token'));
return this.next(
new FatalError('Need an api key or access token'),
null,
this.request,
this._additional_args
);
}

@@ -537,0 +550,0 @@

2

package.json
{
"name": "anytv-commons",
"version": "0.0.6",
"version": "0.0.7",
"description": "Collection of libraries commonly used",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc