couchdb-iterator
Advanced tools
Comparing version 1.0.2 to 1.1.0
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20080
13
374