Socket
Socket
Sign inDemoInstall

pouchdb-errors

Package Overview
Dependencies
Maintainers
11
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pouchdb-errors - npm Package Compare versions

Comparing version 7.2.2 to 7.3.0

9

lib/index.es.js

@@ -58,2 +58,7 @@ import inherits from 'inherits';

}
if (this.stack === undefined) {
this.stack = (new Error()).stack;
}
/* jshint ignore:end */

@@ -93,2 +98,6 @@ if (reason !== undefined) {

if (!('stack' in err)) {
err.stack = (new Error()).stack;
}
return err;

@@ -95,0 +104,0 @@ }

@@ -64,2 +64,7 @@ 'use strict';

}
if (this.stack === undefined) {
this.stack = (new Error()).stack;
}
/* jshint ignore:end */

@@ -99,2 +104,6 @@ if (reason !== undefined) {

if (!('stack' in err)) {
err.stack = (new Error()).stack;
}
return err;

@@ -101,0 +110,0 @@ }

8

package.json
{
"name": "pouchdb-errors",
"version": "7.2.2",
"version": "7.3.0",
"description": "Errors exposed by PouchDB.",

@@ -9,3 +9,7 @@ "main": "./lib/index.js",

"license": "Apache-2.0",
"repository": "https://github.com/pouchdb/pouchdb",
"repository": {
"type": "git",
"url": "https://github.com/pouchdb/pouchdb.git",
"directory": "packages/node_modules/pouchdb-errors"
},
"jsnext:main": "./lib/index.es.js",

@@ -12,0 +16,0 @@ "dependencies": {

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