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

pg.js

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pg.js - npm Package Compare versions

Comparing version 2.7.0 to 2.8.0

12

lib/types/textParsers.js

@@ -181,2 +181,12 @@ var arrayParser = require(__dirname + "/arrayParser.js");

var parseJsonArray = function(val) {
var arr = parseStringArray(val);
if (!arr) {
return arr;
}
return arr.map(function(el) { return JSON.parse(el); });
};
var init = function(register) {

@@ -206,2 +216,4 @@ register(20, parseBigInteger); // int8

register(114, JSON.parse.bind(JSON));
register(199, parseJsonArray); // json[]
register(2951, parseStringArray); // uuid[]
};

@@ -208,0 +220,0 @@

2

package.json
{
"name": "pg.js",
"version": "2.7.0",
"version": "2.8.0",
"description": "node-postgres without the bindings",

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

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