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

jotform

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jotform - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

6

index.js

@@ -111,3 +111,3 @@ var defaults = {

var filter, offset, limit, orderby, direction, fullText;
var filter, offset, limit, orderby, direction, fullText, nocache;
if (query && typeof query === 'object') {

@@ -120,2 +120,3 @@ if (typeof query.filter === 'object' || query.filter) { filter = query.filter || filter; }

fullText = query.fullText || fullText;
nocache = query.nocache || nocache;
}

@@ -129,3 +130,4 @@

(limit !== undefined ? "&limit=" + limit : "") +
(orderby !== undefined ? "&orderby=" + orderby : "&orderby=created_at") +
(orderby !== undefined ? "&orderby=" + orderby : "&orderby=created_at") +
(nocache !== undefined ? "&nocache=" + nocache : "") +
(direction !== undefined ? "," + direction : "")

@@ -132,0 +134,0 @@ , requestVerb = "get";

@@ -10,3 +10,3 @@ {

"description": "jotform API nodejs client",
"version": "0.1.1",
"version": "0.1.2",
"directories": {

@@ -13,0 +13,0 @@ "test": "test"

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