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

syntex-error

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syntex-error - npm Package Compare versions

Comparing version 1.0.16 to 1.0.17

2

package.json
{
"name": "syntex-error",
"version": "1.0.16",
"version": "1.0.17",
"description": "A comprehensive error handling package tailored for use in both Express backend and React frontend applications. Simplify the process of managing and reporting errors seamlessly across your entire stack, providing a unified approach for a more efficient debugging and user experience.",

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

@@ -8,3 +8,3 @@ import {fetchTrendingMovies,fetchUpcomingMovies,fetchTopRatedMovies,searchYoutubeVideo} from "../Api/index.js"

}
async UpcomingMovies(page){
async UpcomingMovies(page = 1){
const upcoming = await fetchUpcomingMovies(page);

@@ -14,3 +14,3 @@ return upcoming.results;

async TrendingMovies(page){
async TrendingMovies(page = 1){
const trending = await fetchTrendingMovies(page);

@@ -21,3 +21,3 @@ return trending.results;

async TopRatedMovies(page){
async TopRatedMovies(page = 1){
const topRated = await fetchTopRatedMovies(page);

@@ -24,0 +24,0 @@ return topRated.results;

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