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

flixhq-core

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

flixhq-core - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

LICENSE

2

package.json
{
"name": "flixhq-core",
"version": "1.0.1",
"version": "1.0.2",
"description": "Nodejs library that provides an Api for obtaining the movies information from FlixHQ website.",

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

@@ -29,3 +29,3 @@

- [fetchMovieInfo](#fetchmovieinfo)
- [fetchEpisodeServers](#fetchepisodeserver)
- [fetchEpisodeServers](#fetchepisodeservers)
- [fetchEpisodeSources](#fetchepisodesources)

@@ -32,0 +32,0 @@ - [search](#search)

@@ -66,11 +66,17 @@ import axios from "axios";

case MovieReport.LATEST_MOVIE:
latestMovies.push(setMovieData($(el), this.baseUrl));
$(el).find(moviesListSelector).each((_, el) => {
latestMovies.push(setMovieData($(el), this.baseUrl));
});
break;
case MovieReport.LATEST_TV_SHOWS:
latestTvShows.push(setMovieData($(el), this.baseUrl));
$(el).find(moviesListSelector).each((_, el) => {
latestTvShows.push(setMovieData($(el), this.baseUrl));
});
break;
case MovieReport.COMING_SOON:
commingSoon.push(setMovieData($(el), this.baseUrl));
$(el).find(moviesListSelector).each((_, el) => {
commingSoon.push(setMovieData($(el), this.baseUrl));
});
break;

@@ -77,0 +83,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