Socket
Socket
Sign inDemoInstall

node-themoviedb

Package Overview
Dependencies
30
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.6 to 0.2.7

7

dist/utils/parseEndpoint.js

@@ -6,7 +6,8 @@ "use strict";

var parsedEndpoint = endpoint;
var match = null;
// eslint-disable-next-line no-cond-assign
while (match = regExp.exec(parsedEndpoint))
var match = regExp.exec(parsedEndpoint);
while (match) {
parsedEndpoint = parsedEndpoint.replace(match[0], params[match[1]]);
match = regExp.exec(parsedEndpoint);
}
return parsedEndpoint;
});
{
"name": "node-themoviedb",
"version": "0.2.6",
"version": "0.2.7",
"description": "A Node.JS wrapper for The Movie DB API.",

@@ -10,4 +10,4 @@ "author": "Andy Wampir <wampirchikkkk@yandex.ru>",

"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"del-cli": "^3.0.1",

@@ -25,3 +25,4 @@ "eslint": "^7",

"release": "yarn build && np",
"release:preview": "np --preview"
"release:preview": "np --preview",
"prepublish": "eslint --ext .ts ./src/**"
},

@@ -28,0 +29,0 @@ "files": [

Sorry, the diff of this file is too big to display

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