New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.21.0 to 1.21.1

3

dist/data-types/Int8Type.js

@@ -24,5 +24,6 @@ "use strict";

isType(v) {
return v instanceof BigInt || typeof v === 'number';
return typeof v === 'bigint' ||
(typeof v === 'number' && Number.isInteger(v));
}
};
exports.ArrayInt8Type = Object.assign(Object.assign({}, exports.Int8Type), { name: '_int8', oid: definitions_1.DataTypeOIDs._int8, elementsOID: definitions_1.DataTypeOIDs.int8 });
{
"name": "postgresql-client",
"description": "Professional PostgreSQL client for JavaScript and TypeScript",
"version": "1.21.0",
"version": "1.21.1",
"author": "Panates",

@@ -78,3 +78,3 @@ "contributors": [

"clean:src": "ts-cleanup -s src --all | ts-cleanup -s test",
"prebuild": "npm run clean | npm run lint",
"prebuild": "npm run clean && npm run lint",
"build": "tsc -b tsconfig-build.json",

@@ -81,0 +81,0 @@ "compile": "tsc -b tsconfig.json",

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