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

agoge-pouchdb-plugins

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agoge-pouchdb-plugins - npm Package Compare versions

Comparing version 1.0.14 to 1.0.15

17

agoge-pouchdb-plugins.js

@@ -143,4 +143,19 @@ var CryptoJS = require('crypto-js');

}
this.all = this.take;
this.page = async function(pageNo, pageSize) {
pageNo = pageNo || 1;
pageSize = pageSize || 100;
await plugin.upsert(whereMapReduce);
this.all = this.take;
if ( pageNo > 1 ) {
options.skip = pageSize * ( pageNo - 1 );
}
options.limit = pageSize;
return await plugin.tolist('where', 'where', options);
}
}

@@ -147,0 +162,0 @@ }

2

package.json
{
"name": "agoge-pouchdb-plugins",
"version": "1.0.14",
"version": "1.0.15",
"description": "My personal plugin functions to pouchdb-couchdb",

@@ -5,0 +5,0 @@ "main": "agoge-pouchdb-plugins.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