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

couchdb-iterator

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

couchdb-iterator - npm Package Compare versions

Comparing version 1.0.2 to 1.1.0

lib/iteratorCaller.js

2

index.js

@@ -9,3 +9,3 @@ 'use strict';

const rowsReader = require('./lib/rowsReader');
const iteratorCaller = require('./lib/IteratorCaller');
const iteratorCaller = require('./lib/iteratorCaller');

@@ -12,0 +12,0 @@ const allowedQueryOptions = [

@@ -5,3 +5,3 @@ 'use strict';

class RowsReader extends ReadableStream {
class RowsReaderStream extends ReadableStream {
constructor(queryFn, queryOptions) {

@@ -59,3 +59,3 @@ super({ objectMode: true, highWaterMark: queryOptions.limit });

module.exports = function (queryFn, queryOptions) {
return new RowsReader(queryFn, queryOptions);
return new RowsReaderStream(queryFn, queryOptions);
};
{
"name": "couchdb-iterator",
"version": "1.0.2",
"version": "1.1.0",
"description": "A fast and easy to ease CouchDB iterator for views and all documents",

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

Sorry, the diff of this file is not supported yet

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