Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postgresql-client

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postgresql-client - npm Package Compare versions

Comparing version 1.18.3 to 1.18.4

3

dist/util/stringify-for-sql.js

@@ -5,2 +5,3 @@ "use strict";

const escape_literal_1 = require("./escape-literal");
const UuidType_1 = require("../data-types/UuidType");
function stringifyArrayForSQL(v, options, encode) {

@@ -24,2 +25,4 @@ const arr = v.map(x => stringifyValueForSQL(x, options, encode));

return v.toString();
if (typeof v === 'string' && UuidType_1.UuidType.isType(v))
return (0, escape_literal_1.escapeLiteral)('' + v) + '::uuid';
if (typeof v === 'object')

@@ -26,0 +29,0 @@ return (0, escape_literal_1.escapeLiteral)(JSON.stringify(v));

2

package.json
{
"name": "postgresql-client",
"description": "Professional PostgreSQL client for JavaScript and TypeScript",
"version": "1.18.3",
"version": "1.18.4",
"author": "Panates",

@@ -6,0 +6,0 @@ "contributors": [

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