New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eztv_api_x

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eztv_api_x - npm Package Compare versions

Comparing version 0.0.10 to 0.1.0

17

eztv_api.js

@@ -87,7 +87,14 @@ /*************************

episode_rows = $(this).children('.forum_thread_post');
if(episode_rows.length > 0) {
var title = $(this).children('td').eq(1).text();
if(title.indexOf("x264") > -1) return true;
}
return false;
if(episode_rows.length > 0) {
var title = $(this).children('td').eq(1).text();
// we exclude all x264-CTU or AC3 (probably AC3)
if(title.indexOf("x264-CTU") > -1 || title.indexOf("AC3") > -1)
return false;
else if(title.indexOf("XviD") > -1 || title.indexOf("x264") > -1)
// accept xvid & x264
return true;
}
return false;
});

@@ -94,0 +101,0 @@

{
"name" : "eztv_api_x",
"version" : "0.0.10",
"version" : "0.1.0",
"description" : "Web Scraper to provide methods to access EZTV easier",

@@ -5,0 +5,0 @@ "author" : "SlashmanX & phenomenz",

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