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

screenshotone-api-sdk

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

screenshotone-api-sdk - npm Package Compare versions

Comparing version 1.0.30 to 1.0.31

7

dist/main.js

@@ -614,3 +614,8 @@ "use strict";

for (const value of values) {
this.query.append(key, value);
if (values.length == 1) {
this.query.set(key, value);
}
else {
this.query.append(key, value);
}
}

@@ -617,0 +622,0 @@ }

2

package.json
{
"name": "screenshotone-api-sdk",
"homepage": "https://screenshotone.com",
"version": "1.0.30",
"version": "1.0.31",
"description": "Use ScreenshotOne.com API to generate screenshots of any website.",

@@ -6,0 +6,0 @@ "repository": {

@@ -737,3 +737,7 @@ import * as crypto from 'crypto';

for (const value of values) {
this.query.append(key, value);
if (values.length == 1) {
this.query.set(key, value);
} else {
this.query.append(key, value);
}
}

@@ -740,0 +744,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