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

workers-qb

Package Overview
Dependencies
Maintainers
0
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

workers-qb - npm Package Compare versions

Comparing version 1.6.6 to 1.6.7

5

dist/index.js

@@ -527,4 +527,5 @@ "use strict";

if (typeof conditions === "string") return ` WHERE ${conditions.toString()}`;
if (conditions.length > 0) {
return ` WHERE ${conditions.join(" AND ")}`;
if (conditions.length === 1) return ` WHERE ${conditions[0].toString()}`;
if (conditions.length > 1) {
return ` WHERE (${conditions.join(") AND (")})`;
}

@@ -531,0 +532,0 @@ return "";

2

package.json
{
"name": "workers-qb",
"version": "1.6.6",
"version": "1.6.7",
"description": "Zero dependencies Query Builder for Cloudflare Workers",

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

Sorry, the diff of this file is not supported yet

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