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

@trenskow/pged

Package Overview
Dependencies
Maintainers
1
Versions
190
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trenskow/pged - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"name": "@trenskow/pged",
"version": "1.1.0",
"version": "1.1.1",
"description": "Just a silly little db management and query builder for Postgresql.",

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

@@ -295,4 +295,7 @@ 'use strict';

let value = this._updateValues[idx];
if (value.substr(0, 1) == ':') value = value.substr(1);
else {
if (value == null) {
value = 'NULL';
} else if (value.substr(0, 1) == ':') {
value = value.substr(1);
} else {
this._queryParameters.push(value);

@@ -299,0 +302,0 @@ value = `$${this._queryParameters.length}`;

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